pang.jiabao
昨天 15161de49e7f35e2fc926a20577905621f30554c
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
package com.zy.entity;
 
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
 
/**
 * @author pang.jiabao
 * @description 2.1.15 外设执行通知接口WCS
 * @createDate 2025/12/28 10:32
 */
@Data
@AllArgsConstructor
@NoArgsConstructor
public class EqptNotify {
 
    /**
     * 设备编号/设备名称
     */
    private String eqptCode;
 
    /**
     * 任务号为唯一编号,可使用UUID
     */
    private String taskCode;
 
    /**
     * 任务执行状态:可扩展枚举值。
     * 预制枚举值:
     * 1. 自动门,风淋门
     * "1"-开门到位
     * "2"-关门到位
     * 2. 电梯
     * "3"-开门到位
     * "4"-物料到达目标楼层
     * 3. 装卸机、输送线
     * "5"-取货
     * "6"-放货
     * "7"-到达
     */
    private String actionStatus;
 
    /**
     * 分配的站点编号,电梯多拖场景使用。
     */
    private String siteCode;
 
 
}