package org.springblade.mdm.flow.constants;
|
|
public class FlowContants {
|
|
public static final String Y = "Y";
|
public static final String N = "N";
|
|
/**
|
* 试切流程KEY
|
*/
|
public static final String TRY_PROCESS_KEY = "dispatch";
|
|
/**
|
* 程序补充流程KEY
|
*/
|
public static final String APPEND_PROCESS_KEY = "program-append";
|
/**
|
* 固化流程KEY
|
*/
|
public static final String CURE_PROCESS_KEY = "program-cure";
|
/**
|
* 程序替换流程key
|
*/
|
public static final String REPLACE_PROCESS_KEY = "program-replace";
|
|
/**
|
* 程序解锁流程key
|
*/
|
public static final String UNLOCK_PROCESS_KEY = "program-unlock";
|
|
public static final String TEAM_LEADER = "teamLeader";
|
|
public static final String PROGRAMMER = "programmer";
|
|
public static final String CHECKER = "checker";
|
|
public static final String SENIOR = "senior";
|
|
public static final String ASSIGNEE = "assignee";
|
/**
|
* 流程标题
|
*/
|
public static final String TITLE = "title";
|
/**
|
* 图号
|
*/
|
public static final String DRAWING_NO = "drawingNo";
|
/**
|
* 工序号
|
*/
|
public static final String PROCESS_NO = "processNo";
|
/**
|
* 图号版次
|
*/
|
public static final String DRAWING_NO_EDITION = "drawingNoEdition";
|
/**
|
* 工序版次
|
*/
|
public static final String PROCESS_EDITION = "processEdition";
|
/*
|
机床编码
|
*/
|
public static final String MACHINE_CODE = "machineCode";
|
/**
|
* 机床型号
|
*/
|
public static final String MACHINE_MODE = "machineMode";
|
/**
|
* 工艺版次
|
*/
|
public static final String CRAFT_EDITION = "craftEdition";
|
/**
|
* 产品型号
|
*/
|
public static final String PRODUCT_MODEL = "productModel";
|
|
/**
|
* 是否有固化程序
|
*/
|
public static final String HAS_CURED_PROGRAM = "hasCuredProgram";
|
|
/**
|
* 固化程序包名的id
|
*/
|
public static final String CURED_NODE_ID = "curedNodeId";
|
/**
|
* 工序名称
|
*/
|
public static final String PROCESS_NAME = "processName";
|
|
/**
|
* 上一步审批用户姓名
|
*/
|
public static final String LAST_STEP_USER_NICKNAME = "approveUserNickName";
|
/**
|
* 工序版次是否一致的key
|
*/
|
public static final String IS_PROCESS_EDITION_SAME = "isProcessEditionSame";
|
|
|
|
/**
|
* 是否在有效期内的key
|
*/
|
public static final String VALIDITY_PERIOD = "validityPeriod";
|
|
/**
|
* 程序包名
|
*/
|
public static final String PROGRAM_PACKAGE_NAME = "programPackageName";
|
|
/**
|
* 任务车间
|
*/
|
public static final String WORKSHOP = "workshop";
|
|
/**
|
* 偏离单号
|
*/
|
public static final String DEVIATION = "deviation";
|
/**
|
* 固化程序,审批具体是否可用
|
*/
|
public static final String CURE_PROGRAM_USEABLE = "cureProgramUseable";
|
|
/**
|
* 自己定一的流程名称
|
*/
|
public static final String MY_PROCESS_NAME = "myProcessName";
|
/**
|
* 流程中如果针对哪个节点发起流程,使用这个关键字在流程变量中存放nodeId
|
*/
|
public static final String NODE_ID = "nodeId";
|
/**
|
* 流程变量中的异常标志,="1"为异常流程
|
*/
|
public static final String EXCEPTION = "exception";
|
/**
|
* 编程员姓名
|
*/
|
public static final String PROGRAMMER_NAME = "programmerName";
|
|
/**
|
* 是否临时流程,临时流程不检查程序文件名合法性,不生成产品结构树
|
*/
|
public static final String IS_TEMP_FLOW = "isTempFlow";
|
/*
|
已固化但以已所帝国标志 Y/N
|
*/
|
public static final String CURED_LOCKED = "curedLocked";
|
}
|