Initial commit
This commit is contained in:
13
src/main/java/com/gxwebsoft/oa/constants/TaskConstants.java
Normal file
13
src/main/java/com/gxwebsoft/oa/constants/TaskConstants.java
Normal file
@@ -0,0 +1,13 @@
|
||||
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; // 已关闭
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user