package com.sunda.spmsorder.entity.vo;

import com.github.crab2died.annotation.ExcelField;

import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

@Data
public class WhsBoxInfoReportVO {
	@ApiModelProperty(value = "工厂")
    @ExcelField(title = "werks", order = 1)
    String werks;
	
	@ApiModelProperty(value = "仓库地点")
	@ExcelField(title = "whsLocationCode", order = 2)
	String whsLocationCode;
	
	@ApiModelProperty(value = "储位编号")
	@ExcelField(title = "storageNo", order = 3)
	String storageNo;
	
	@ApiModelProperty(value = "包装单号")
	@ExcelField(title = "packageNote", order = 4)
	String packageNote;
	
	@ApiModelProperty(value = "序号")
	@ExcelField(title = "item", order = 5)
	String item;
	
	@ApiModelProperty(value = "箱码")
	@ExcelField(title = "boxNote", order = 6)
	String boxNote;
	
	@ApiModelProperty(value = "采购订单号")
	@ExcelField(title = "purchaseNo", order = 7)
	String purchaseNo;
	
	@ApiModelProperty(value = "交货单")
	@ExcelField(title = "deliveryNoteSap", order = 8)
	String deliveryNoteSap;
	
	@ApiModelProperty(value = "SRM合同号")
	@ExcelField(title = "srmContractNo", order = 9)
	String srmContractNo;
	
	@ApiModelProperty(value = "查询日期")
	@ExcelField(title = "nowDate", order = 10)
	String nowDate;
}
