1
zhang
3 天以前 add29c9dfe37a3147ee1a426e1dba2f42ad741e6
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
package com.zy.asrs.entity.param;
 
import lombok.Data;
 
@Data
public class TaskOverParam {
    /**
     * 任务号
     */
    private String taskNo;
    /**
     * 完成标识
     */
    private Integer status;
    /**
     * 站点
     */
    private Integer startPoint;
    /**
     * 高度
     */
    private Integer height;
 
    /**
     * 1放。0取
     */
    private int type;
 
}