自动化立体仓库 - WCS系统
*
lsh
2024-10-23 11eaa61d046200bb5eeecfc35d1ca1964505136d
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
package com.zy.asrs.domain.param;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.enums.IdType;
import com.zy.asrs.entity.BasCircularShuttle;
import com.zy.asrs.entity.WrkMast;
import io.swagger.annotations.ApiModelProperty;
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 String status$ = "未知";
    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();
    }
}