*
lsh
2025-11-25 c289447144f4599fe2e13d342c28a3c4d49f750f
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
package com.zy.asrs.domain.param;
 
//import com.zy.asrs.entity.BasCircularShuttle;
import lombok.Data;
 
/**
 * Created by vincent on 2020-06-02
 */
@Data
public class RgvCircularShuttleParam {
 
    private Long id;
 
 
    private Integer rgvId;
 
    private Integer rgvNo;
 
    /**
     * 0:正常,1:禁用
     */
    private Integer status;
    private Integer error;
    private String status$ = "未知";
    private String error$ = "-";
    private Long position = 0L;
 
    public RgvCircularShuttleParam(){};
 
 
//    public RgvCircularShuttleParam(BasCircularShuttle basCircularShuttle){
//        this.rgvNo = basCircularShuttle.getRgvNo();
//        this.rgvId = basCircularShuttle.getRgvId();
//        this.status = basCircularShuttle.getStatus();
//        this.status$ = basCircularShuttle.getStatus()==0? "正常":"禁用";
//        this.id = basCircularShuttle.getId();
//    }
}