Blame view

src/main/java/com/huaheng/api/mes/domain/AcsTask.java 502 Bytes
xcq authored
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.huaheng.api.mes.domain;

import lombok.Data;

/**
 * ACS任务下发实体类
 * @author xcq
 */
@Data
public class AcsTask {
    /**
     * 任务id
     */
xcq authored
14
    private String taskNo;
xcq authored
15
16
    private String taskGroup;
    /**
xcq authored
17
     * 起点
xcq authored
18
19
20
     */
    private String beginPoint;
    /**
xcq authored
21
     * 终点
xcq authored
22
23
24
25
26
27
28
29
     */
    private String endPoint;
    /**
     * 任务状态
     */
    private Integer status;
    private String agvNo;
xcq authored
30
xcq authored
31
32
33
34
    private Integer taskNum;

    private String endBarcode;
}