package cn.huge.module.sys.constant;
|
|
/**
|
* @title: 调解相关常量类
|
* @description: 调解相关常量类
|
* @company: hugeinfo
|
* @author: liyj
|
* @time: 2021-11-05 16:51:48
|
* @version: 1.0.0
|
*/
|
public class FlowBaseConsts {
|
|
/**
|
* 多元化流程编号
|
*/
|
public static final String DYH_FLOW_1 = "DYH2.0_FLOW_MEDIATE_ROOT";
|
public static final String DYH_FLOW_2 = "DYH2.0_FLOW_JUDIC_ROOT";
|
|
/**
|
* 任务节点类型,1:首节点,2:普通节点,3:结束节点
|
*/
|
public static final int TASK_NODE_TYPE_1 = 1;
|
public static final int TASK_NODE_TYPE_2 = 2;
|
public static final int TASK_NODE_TYPE_3 = 3;
|
|
/**
|
* 任务节点类型,1:首节点,2:普通节点,3:结束节点
|
*/
|
public static final int TASK_RESULT_0 = 0;
|
public static final int TASK_RESULT_1 = 1;
|
public static final int TASK_RESULT_2 = 2;
|
|
/**
|
* 任务类型,1:正常任务,2:退回任务
|
*/
|
public static final int TASK_TYPE_1 = 1;
|
public static final int TASK_TYPE_2 = 2;
|
|
/**
|
* 任务条件,forward:前进,back:退回
|
*/
|
public static final String OPERATION_1 = "forward";
|
public static final String OPERATION_2 = "back";
|
|
/**
|
* 任务节点执行者类型:22_00026-1:所有人,22_00026-2:上一步骤选择,
|
* 22_00026-3:上一步骤执行者,22_00026-4:固定角色
|
*/
|
public static final String OPER_TYPE_1 = "22_00026-1";
|
public static final String OPER_TYPE_2 = "22_00026-2";
|
public static final String OPER_TYPE_3 = "22_00026-3";
|
public static final String OPER_TYPE_4 = "22_00026-4";
|
}
|
/**
|
* -------------------_ooOoo_-------------------
|
* ------------------o8888888o------------------
|
* ------------------88" . "88------------------
|
* ------------------(| -_- |)------------------
|
* ------------------O\ = /O------------------
|
* ---------------____/`---'\____---------------
|
* -------------.' \\| |// `.-------------
|
* ------------/ \\||| : |||// \------------
|
* -----------/ _||||| -:- |||||- \-----------
|
* -----------| | \\\ - /// | |-----------
|
* -----------| \_| ''\---/'' | |-----------
|
* -----------\ .-\__ `-` ___/-. /-----------
|
* ---------___`. .' /--.--\ `. . __----------
|
* ------."" '< `.___\_<|>_/___.' >'"".-------
|
* -----| | : `- \`.;`\ _ /`;.`/ - ` : | |-----
|
* -----\ \ `-. \_ __\ /__ _/ .-` / /-----
|
* ======`-.____`-.___\_____/___.-`____.-'======
|
* -------------------`=---='
|
* ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
* ---------佛祖保佑---hugeinfo---永无BUG----------
|
*/
|