/** * */ package cn.com.lzt.purchase.dto; import org.jeecgframework.minidao.annotation.MiniDao; import org.jeecgframework.poi.excel.annotation.Excel; /** * @author xzx * * 2018年9月22日 * */ @MiniDao public class OrderToQingyuDto extends OrderToDeliverListDto{ @Excel(name="清风小卷纸245段",width=15,isStatistics=true,orderNum = "4") @GoodsCode("bnmk") private Double qingfengxiaojuan245; @Excel(name="清风大卷纸BJ03A",width=15,isStatistics=true,orderNum = "5") @GoodsCode("XTKY") private Double qingfengdajuanBJ03A; @Excel(name="清风二折擦手纸 B900A",width=15,isStatistics=true,orderNum = "6") @GoodsCode("SWpb") private Double qingfengerzheB900A; @Excel(name="清风三折擦手纸 B913A",width=15,isStatistics=true,orderNum = "7") @GoodsCode("Uv8W") private Double qingfengsanzheB913A; public Double getQingfengxiaojuan245() { return qingfengxiaojuan245; } public void setQingfengxiaojuan245(Double qingfengxiaojuan245) { this.qingfengxiaojuan245 = qingfengxiaojuan245; } public Double getQingfengdajuanBJ03A() { return qingfengdajuanBJ03A; } public void setQingfengdajuanBJ03A(Double qingfengdajuanBJ03A) { this.qingfengdajuanBJ03A = qingfengdajuanBJ03A; } public Double getQingfengerzheB900A() { return qingfengerzheB900A; } public void setQingfengerzheB900A(Double qingfengerzheB900A) { this.qingfengerzheB900A = qingfengerzheB900A; } public Double getQingfengsanzheB913A() { return qingfengsanzheB913A; } public void setQingfengsanzheB913A(Double qingfengsanzheB913A) { this.qingfengsanzheB913A = qingfengsanzheB913A; } }