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;
|
|
public OutLocBoxVo() {
|
}
|
|
public OutLocBoxVo(String batch) {
|
this.batch = batch;
|
}
|
|
public OutLocBoxVo(String batch,String orderNo) {
|
this.batch = batch;
|
this.orderNo = orderNo;
|
}
|
|
}
|