| | |
| | | @TableName("mdm_task_dispatch") |
| | | public class TaskDispatch extends BizEntity { |
| | | /** |
| | | * 入库成功 |
| | | */ |
| | | public static final int STATUS_INIT = 1; |
| | | /** |
| | | * 成功启动 |
| | | */ |
| | | public static final int STATUS_STARTED = 2; |
| | | /** |
| | | * 重复派工 |
| | | */ |
| | | public static final int STATUS_DUP = 3; |
| | | /** |
| | | * 验证失败 |
| | | */ |
| | | public static final int STATUS_CHECK_FAILED = 4; |
| | | /** |
| | | * 启动异常 |
| | | */ |
| | | public static final int STATUS_EXCEPTION = 5; |
| | | |
| | | /** |
| | | * 设备编号 |
| | | */ |
| | | private String machineCode; |
| | |
| | | * 审批时的流程实例id,关联的流程实例id,流程发起后填充 |
| | | */ |
| | | private String processInstanceId; |
| | | |
| | | /** |
| | | * 偏离单号 |
| | | */ |
| | | private String deviation; |
| | | } |