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;
|
|
|
}
|