自动化立体仓库 - WCS系统
#
luxiaotao1123
2020-08-20 90b327d8609b08ae03ead6294244d5fc841d199a
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
package com.zy.asrs.domain.vo;
 
import com.zy.asrs.domain.enums.CrnStatusType;
import lombok.Data;
 
/**
 * 堆垛机最新数据视图对象
 * Created by vincent on 2020-06-01
 */
@Data
public class CrnLatestDataVo {
 
    // 堆垛机编号
    private Integer crnId;
 
    // 偏移量
    private Double offset;
 
    // 当前列
    private Short bay;
 
    private CrnStatusType crnStatus;
 
    public String getCrnStatus(){
        return crnStatus.toString().toLowerCase().replaceAll("_", "-");
    }
 
}