办学质量监测教学评价系统
zhouweiyi
2025-05-15 c6ffbcb3cf9b014c7b99170e5dd1c97317e9c4a5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
  //处理失败
  public static final Integer STATUS_40 = 40;
 
 
}