package cn.huge.module.cases.consts;
|
|
/**
|
* @title: 用户相关常量类
|
* @description: 用户相关常量
|
* @company: hugeinfo
|
* @author: liyj
|
* @time: 2021-11-05 16:51:48
|
* @version: 1.0.0
|
*/
|
public class CaseTaskConsts {
|
|
/**
|
* 纠纷任务类型,1:承办,2:配合
|
*/
|
public static final int CASE_TASK_TYPE_1 = 1;
|
public static final int CASE_TASK_TYPE_2 = 2;
|
|
/**
|
* 任务候选执行者类型:1:所有人,2:上一步骤选择,3:上一步骤执行者,4:自定义指定(单位部门角色人组合)
|
*/
|
public static final int CANDE_TYPE_1 = 1;
|
public static final int CANDE_TYPE_2 = 2;
|
public static final int CANDE_TYPE_3 = 3;
|
public static final int CANDE_TYPE_4 = 4;
|
|
/**
|
* 任务已读状态,0:未读,1:已读
|
*/
|
public static final int READ_STATUS_0 = 0;
|
public static final int READ_STATUS_1 = 1;
|
|
/**
|
* 任务进度,1:进行中,2:已完成
|
*/
|
public static final int TASK_STATUS_1 = 1;
|
public static final int TASK_STATUS_2 = 2;
|
|
/**
|
* 处理结果,0:正常流转,1:审核通过,2:审核不通过,3:不予受理,4:回退,5:上报
|
*/
|
public static final int HANDLE_RESULT_0 = 0;
|
public static final int HANDLE_RESULT_1 = 1;
|
public static final int HANDLE_RESULT_2 = 2;
|
public static final int HANDLE_RESULT_3 = 3;
|
public static final int HANDLE_RESULT_4 = 4;
|
public static final int HANDLE_RESULT_5 = 5;
|
|
/**
|
* 配合状态,0:配合,1:回退,2:承办部门回退
|
*/
|
public static final int ASSIST_STATUS_0 = 0;
|
public static final int ASSIST_STATUS_1 = 1;
|
public static final int ASSIST_STATUS_2 = 2;
|
|
/**
|
* 经办类型,1:承办组织,2:配合组织
|
*/
|
public static final int HANDLE_TYPE_1 = 1;
|
public static final int HANDLE_TYPE_2 = 2;
|
|
/**
|
* 任务超时状态,0:未超时,1:已超时
|
*/
|
public static final int OVERTIME_STATUS_0 = 0;
|
public static final int OVERTIME_STATUS_1 = 1;
|
}
|
/**
|
* -------------------_ooOoo_-------------------
|
* ------------------o8888888o------------------
|
* ------------------88" . "88------------------
|
* ------------------(| -_- |)------------------
|
* ------------------O\ = /O------------------
|
* ---------------____/`---'\____---------------
|
* -------------.' \\| |// `.-------------
|
* ------------/ \\||| : |||// \------------
|
* -----------/ _||||| -:- |||||- \-----------
|
* -----------| | \\\ - /// | |-----------
|
* -----------| \_| ''\---/'' | |-----------
|
* -----------\ .-\__ `-` ___/-. /-----------
|
* ---------___`. .' /--.--\ `. . __----------
|
* ------."" '< `.___\_<|>_/___.' >'"".-------
|
* -----| | : `- \`.;`\ _ /`;.`/ - ` : | |-----
|
* -----\ \ `-. \_ __\ /__ _/ .-` / /-----
|
* ======`-.____`-.___\_____/___.-`____.-'======
|
* -------------------`=---='
|
* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
* ---------佛祖保佑---hugeinfo---永无BUG----------
|
*/
|