package doumeemes.dao.business.dto;
|
|
import cn.afterturn.easypoi.excel.annotation.Excel;
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.baomidou.mybatisplus.annotation.TableName;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import doumeemes.core.annotation.excel.ExcelColumn;
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
import java.util.Date;
|
|
/**
|
* 物料库存余额信息表
|
* @author 江蹄蹄
|
* @date 2022/04/20 09:37
|
*/
|
@Data
|
@ApiModel("物料库存导入")
|
public class WStockImportDTO implements Serializable {
|
@ApiModelProperty(value = "货位名称,精确匹配")
|
@Excel(name="货位名称",orderNum ="7")
|
private String location;
|
|
@Excel(name="仓库名称",orderNum ="6")
|
@ApiModelProperty(value = "仓库名称,精确匹配")
|
private String warehouse;
|
|
@Excel(name="篮筐编码",orderNum ="1")
|
@ApiModelProperty(value = "篮筐编码")
|
private String applianceCode;
|
|
@Excel(name="物料编码",orderNum ="3")
|
@ApiModelProperty(value = "物料编码")
|
private String materialCode;
|
@Excel(name="物料名称",orderNum ="2")
|
@ApiModelProperty(value = "物料名称")
|
private String materialName;
|
@Excel(name="物料数量",orderNum ="4")
|
@ApiModelProperty(value = "物料数量",example = "100.0")
|
private BigDecimal num;
|
@Excel(name="物料批次号",orderNum ="5")
|
@ApiModelProperty(value = "物料批次号")
|
private String batch;
|
|
}
|