14 lines
493 B
Java
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; // 已关闭
|
|
|
|
}
|