| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /**
- *
- */
- package cn.com.lzt.purchase.dto;
- import org.jeecgframework.minidao.annotation.MiniDao;
- import org.jeecgframework.poi.excel.annotation.Excel;
- /**
- * @author xzx
- *
- * 2018年11月9日
- *
- */
- @MiniDao
- public class OrderToSupplierAllGoodsDto {
- /**主键*/
- private java.lang.String id;
- // @Excel(name="序号",width=15)
- private int index;
- @Excel(name="产品名称",width=50)
- private String goodsName;
- @Excel(name="规格型号",width=50)
- private String specification;
-
- @Excel(name="单位",width=15)
- private String unit;
-
- @Excel(name="数量",width=15)
- private Double amount;
-
- private String goodsID;
-
-
- public String getSpecification() {
- return specification;
- }
- public void setSpecification(String specification) {
- this.specification = specification;
- }
- public java.lang.String getId() {
- return id;
- }
- public void setId(java.lang.String id) {
- this.id = id;
- }
- public int getIndex() {
- return index;
- }
- public void setIndex(int index) {
- this.index = index;
- }
- public String getGoodsName() {
- return goodsName;
- }
- public void setGoodsName(String goodsName) {
- this.goodsName = goodsName;
- }
- public String getUnit() {
- return unit;
- }
- public void setUnit(String unit) {
- this.unit = unit;
- }
- public Double getAmount() {
- return amount;
- }
- public void setAmount(Double amount) {
- this.amount = amount;
- }
- public String getGoodsID() {
- return goodsID;
- }
- public void setGoodsID(String goodsID) {
- this.goodsID = goodsID;
- }
-
-
- }
|