1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package org.ruoyi.constant;
|
| /**
| * @Description:
| * @Date: 2025/5/14 下午2:04
| */
| public class DealStatus {
| //未开始
| public static final Integer STATUS_10 = 10;
| //进行中
| public static final Integer STATUS_20 = 20;
| //已结束
| public static final Integer STATUS_30 = 30;
|
|
| }
|
|