package org.jeecg.modules.eam.constant;
|
|
public interface BusinessCodeConst {
|
//精度参数编码规则
|
String PRECISION_PARAMETERS_RULE = "PrecisionParametersRule";
|
//工艺参数编码规则
|
String PROCESS_PARAMETERS_RULE = "ProcessParametersRule";
|
//设备故障原因编码规则
|
String EQUIPMENT_FAULT_REASON_RULE = "EquipmentFaultReasonRule";
|
//保养标准编码规则
|
String MAINTENANCE_STANDARD_CODE_RULE = "MaintenanceStandardCodeRule";
|
//点检工单编码规则
|
String INSPECTION_ORDER_CODE_RULE = "EamInspectionOrder";
|
//周保编码规则
|
String WEEK_MAINTENANCE_CODE_RULE = "WeekMaintenanceCodeRule";
|
// 维修工单编码规则
|
String REPAIR_ORDER_CODE_RULE = "RepairOrderCodeRule";
|
//二保编码规则
|
String SECOND_MAINTENANCE_CODE_RULE = "SecondMaintenanceCodeRule";
|
//三保编码规则
|
String THIRD_MAINTENANCE_CODE_RULE = "ThirdMaintenanceCodeRule";
|
//设备借出归还
|
String LEAN_OUT_CODE_RULE = "EquipmentLeanOutCodeRule";
|
//设备封存启封
|
String SEAL_UP_CODE_RULE = "EquipmentSealUpCodeRule";
|
//设备调拨编码规则
|
String TRANSFER_CODE_RULE = "EquipmentTransferCodeRule";
|
//设备调拨编码规则
|
String SCRAP_CODE_RULE = "EquipmentScrapCodeRule";
|
//技术状态鉴定规范编码规则
|
String TECHNICAL_STATUS_EVALUATION_STANDARD_CODE_RULE = "TechnicalStatusStandardCodeRule";
|
//技术状态鉴定工单编码规则
|
String TECHNICAL_STATUS_EVALUATION_ORDER_CODE_RULE = "TechnicalStatusEvaluationOrderCodeRule";
|
//技术状态鉴定工单变更编码规则
|
String TECHNICAL_STATUS_EVALUATION_ORDER_CHANGE_CODE_RULE = "TechnicalStatusEvaluationOrderChangeCodeRule";
|
//技术状态变更编码规则
|
String TECHNICAL_STATUS_CHANGE_CODE_RULE = "TechnicalStatusChangeCodeRule";
|
//技术状态变更编码规则
|
String TECHNICAL_STATUS_EVALUATION_APPLY_CODE_RULE = "TechnicalStatusEvaluationApplyCodeRule";
|
//停用加工设备申请编码规则
|
String TECHNICAL_STATUS_DEACTIVATE_CODE_RULE = "TechnicalStatusDeactivateCodeRule";
|
/**
|
* 备件请购单状态 1:已创建 2:已提交 3:已通过 4:已驳回 5:已完成
|
*/
|
String SPARE_REQUISITION_STATUS_1 = "1";
|
String SPARE_REQUISITION_STATUS_2 = "2";
|
String SPARE_REQUISITION_STATUS_3 = "3";
|
String SPARE_REQUISITION_STATUS_4 = "4";
|
String SPARE_REQUISITION_STATUS_5 = "5";
|
|
/**
|
* 备件领用单状态 1:待领取 2:待审批 3:已领取 4:已领取 5:已领取
|
*/
|
String receive_status_1 = "1"; //待领取
|
String receive_status_2 = "2"; //待审批
|
String receive_status_3 = "3"; //已领取
|
String receive_status_4 = "4"; //待归还
|
String receive_status_5 = "5"; //已归还
|
|
/**
|
* 备件报废单状态 1:待报废 2:已报废
|
*/
|
String scrap_status_1 = "1"; //1:待报废
|
String scrap_status_2 = "2"; //2:已报废
|
|
/**
|
* 岗位编码
|
*/
|
//操作工
|
String PCR0001 = "PCR0001";
|
//维修工
|
String PCR0002 = "PCR0002";
|
//设备检验员
|
String PCR0003 = "PCR0003";
|
//车间设备管理员
|
String PCR0004 = "PCR0004";
|
//设备能源部
|
String PCR0005 = "PCR0005";
|
//生产设备管理主管
|
String PCR0006 = "PCR0006";
|
//工艺员
|
String PCR0007 = "PCR0007";
|
//维修室主任
|
String PCR0008 = "PCR0008";
|
//生产设备技术主管
|
String PCR0009 = "PCR0009";
|
//使用车间技术主管
|
String PCR0010 = "PCR0010";
|
//使用单位主管室级领导
|
String PCR0011 = "PCR0011";
|
//生产指挥部室级领导
|
String PCR0012 = "PCR0012";
|
//维修区长
|
String PCR0013 = "PCR0013";
|
//资产管理部
|
String PCR0014 = "PCR0014";
|
//项目主管部
|
String PCR0015 = "PCR0015";
|
//运维商务室主任
|
String PCR0016 = "PCR0016";
|
//运维管理室室主任
|
String PCR0017 = "PCR0017";
|
//使用单位主管部级领导
|
String PCR0018 = "PCR0018";
|
|
//通过、驳回
|
String APPROVED = "1";
|
String REJECTED = "2";
|
}
|