| | |
| | | private Long stepTemplateId; |
| | | |
| | | /** |
| | | * 状态:0-待执行 1-执行中 2-成功 3-失败 4-跳过 5-超时 |
| | | * 状态:0-排队中 1-待执行 2-执行中 3-执行成功 4-执行失败 5-已跳过 6-已取消 |
| | | */ |
| | | @ApiModelProperty(value= "状态:0-待执行 1-执行中 2-成功 3-失败 4-跳过 5-超时") |
| | | @ApiModelProperty(value= "状态:0-排队中 1-待执行 2-执行中 3-执行成功 4-执行失败 5-已跳过 6-已取消") |
| | | private Short status; |
| | | |
| | | /** |
| | |
| | | @DateTimeFormat(pattern="yyyy-MM-dd HH:mm:ss") |
| | | private Date updateTime; |
| | | |
| | | @ApiModelProperty(value= "wms下一步任务类型ID") |
| | | private Integer wmsNextTaskStatus; |
| | | |
| | | @ApiModelProperty(value= "wms当前任务类型ID") |
| | | private Integer wmsNowTaskStatus; |
| | | |
| | | /** |
| | | * 任务号 |
| | | */ |
| | | @ApiModelProperty(value= "任务号") |
| | | private String taskNo; |
| | | |
| | | public FlowStepInstance() {} |
| | | public FlowStepInstance(FlowStepTemplate flowStepTemplate) { |
| | | this.stepTemplateId = flowStepTemplate.getId(); |
| | | this.stepName = flowStepTemplate.getStepName(); |
| | | this.stepType = flowStepTemplate.getStepType(); |
| | | } |
| | | |
| | | public FlowStepInstance(Long flowInstanceId,String flowInstanceNo,Integer stepOrder,String stepCode,String stepName,String stepType,Long stepTemplateId,Short status,String executeResult,String errorCode,String errorMessage,Date startTime,Date endTime,Integer durationSeconds,String inputData,String outputData,Integer retryTimes,Date createTime,Date updateTime) { |
| | | this.flowInstanceId = flowInstanceId; |