Files
tuanwei-java/src/main/java/com/gxwebsoft/oa/constants/TaskConstants.java
南宁网宿科技 912944faea Initial commit
2023-06-03 23:56:49 +08:00

14 lines
493 B
Java

package com.gxwebsoft.oa.constants;
public class TaskConstants {
// 进度管理
public static final Integer PROGRESS0 = 0; // 待分派
public static final Integer PROGRESS1 = 1; // 待处理
public static final Integer PROGRESS2 = 2; // 处理中
public static final Integer PROGRESS3 = 3; // 待确认
public static final Integer PROGRESS4 = 4; // 待反馈
public static final Integer PROGRESS5 = 5; // 已完结
public static final Integer PROGRESS6 = 6; // 已关闭
}