Initial commit

This commit is contained in:
南宁网宿科技
2023-06-03 23:56:49 +08:00
commit 912944faea
821 changed files with 74279 additions and 0 deletions

View 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; // 已关闭
}