自动化立体仓库 - WMS系统
*
lsh
20 小时以前 21f6bf1d6fb89d40654deb1847fbe99dc3eec353
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
42
43
44
45
46
47
48
49
50
package com.zy.asrs.entity.result;
 
import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotations.TableField;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * Created by vincent on 2021/4/13
 */
@Data
public class OutLocBoxVo {
 
    @ExcelProperty(value = "箱号")
    private String batch;
    @ExcelProperty(value = "订单号")
    private String orderNo;
    @ExcelProperty(value = "客户")
    private String cstmrName;
    @ExcelProperty(value = "待判(待判/不合格/合格)默认合格")
    private String danger="合格";
    @ExcelProperty(value = "备注")
    private String memo="";
 
    public OutLocBoxVo() {
    }
 
    public OutLocBoxVo(String batch) {
        this.batch = batch;
    }
 
    public OutLocBoxVo(String batch,String orderNo) {
        this.batch = batch;
        this.orderNo = orderNo;
    }
    public OutLocBoxVo(String batch,String orderNo,String cstmrName,String memo) {
        this.batch = batch;
        this.orderNo = orderNo;
        this.cstmrName = cstmrName;
        this.memo = memo;
    }
 
    public OutLocBoxVo(String batch, String orderNo, String cstmrName, String danger, String memo) {
        this.batch = batch;
        this.orderNo = orderNo;
        this.cstmrName = cstmrName;
        this.danger = danger;
        this.memo = memo;
    }
}