自动化立体仓库 - WCS系统
#
luxiaotao1123
2020-08-11 4c362043cec8a44787a4658b0e09638a3baf2bc0
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
package com.zy.asrs.domain.vo;
 
/**
 * 扫码器实时数据视图对象
 * Created by vincent on 2020-06-03
 */
public class BarcodeDataVo {
 
    // 扫码器编号
    private String barcodeId;
 
    // 扫码器内容
    private String codeValue;
 
    public String getBarcodeId() {
        return barcodeId;
    }
 
    public void setBarcodeId(String barcodeId) {
        this.barcodeId = barcodeId;
    }
 
    public String getCodeValue() {
        return codeValue;
    }
 
    public void setCodeValue(String codeValue) {
        this.codeValue = codeValue;
    }
}