1
12 小时以前 64c076641c56b857fa78f6d9401f070591094569
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
package com.vincent.rsf.openApi.entity.params;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.Date;
 
@Data
public class MissionTaskIssueParam {
 
    /**
     * WMS任务号
     */
    private String taskNo;
    private String barcode;//条码
    private Integer taskPri;//优先级
 
    /*
     * 类型:出库、入库、移库、站到站
     * */
    private String type;
 
    /**
     * 起点编码
     */
    private String sourceCode;
 
    /**
     * 终点编码
     */
    private String targetCode;
 
    /**
     * 子系统编码
     */
    private String systemCode;
 
    /**
     * 子系统名称
     */
    private String systemName;
 
    /**
     * 步骤类型:REQUEST-请求, RESPONSE-响应, VALIDATE-校验, TRANSFORM-转换
     */
    private String stepType;
 
    /**
     * 动作类型:HTTP_CALL, RPC_CALL, MQ_SEND, DB_OPERATION
     */
    private String actionType;
 
 
    /**
     * 关联flow_instance.id
     */
    private Long flowInstanceId;
 
    /**
     * 流程实例编号
     */
    private String flowInstanceNo;
 
    /**
     * 步骤顺序
     */
    private Integer stepOrder;
 
    /**
     * 步骤编码
     */
    private String stepCode;
 
    /**
     * 步骤名称
     */
    private String stepName;
 
    /**
     * 步骤模板ID
     */
    private Long stepTemplateId;
 
    /**
     * 状态:0-排队中 1-待执行 2-执行中 3-执行成功 4-执行失败 5-已跳过 6-已取消
     */
    private Short status;
 
    /**
     * 执行结果
     */
    private String executeResult;
 
    /**
     * 错误码
     */
    private String errorCode;
 
    /**
     * 错误信息
     */
    private String errorMessage;
 
    /**
     * 开始时间
     */
    private Date startTime;
 
    /**
     * 执行耗时(秒)
     */
    private Integer durationSeconds;
 
    /**
     * 步骤重试次数
     */
    private Integer retryTimes;
 
}