OrderToSupplierAllGoodsDto.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /**
  2. *
  3. */
  4. package cn.com.lzt.purchase.dto;
  5. import org.jeecgframework.minidao.annotation.MiniDao;
  6. import org.jeecgframework.poi.excel.annotation.Excel;
  7. /**
  8. * @author xzx
  9. *
  10. * 2018年11月9日
  11. *
  12. */
  13. @MiniDao
  14. public class OrderToSupplierAllGoodsDto {
  15. /**主键*/
  16. private java.lang.String id;
  17. // @Excel(name="序号",width=15)
  18. private int index;
  19. @Excel(name="产品名称",width=50)
  20. private String goodsName;
  21. @Excel(name="规格型号",width=50)
  22. private String specification;
  23. @Excel(name="单位",width=15)
  24. private String unit;
  25. @Excel(name="数量",width=15)
  26. private Double amount;
  27. private String goodsID;
  28. public String getSpecification() {
  29. return specification;
  30. }
  31. public void setSpecification(String specification) {
  32. this.specification = specification;
  33. }
  34. public java.lang.String getId() {
  35. return id;
  36. }
  37. public void setId(java.lang.String id) {
  38. this.id = id;
  39. }
  40. public int getIndex() {
  41. return index;
  42. }
  43. public void setIndex(int index) {
  44. this.index = index;
  45. }
  46. public String getGoodsName() {
  47. return goodsName;
  48. }
  49. public void setGoodsName(String goodsName) {
  50. this.goodsName = goodsName;
  51. }
  52. public String getUnit() {
  53. return unit;
  54. }
  55. public void setUnit(String unit) {
  56. this.unit = unit;
  57. }
  58. public Double getAmount() {
  59. return amount;
  60. }
  61. public void setAmount(Double amount) {
  62. this.amount = amount;
  63. }
  64. public String getGoodsID() {
  65. return goodsID;
  66. }
  67. public void setGoodsID(String goodsID) {
  68. this.goodsID = goodsID;
  69. }
  70. }