SupplierSumRptDto.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. package cn.com.lzt.report.dto;
  2. import java.util.Date;
  3. import org.jeecgframework.poi.excel.annotation.Excel;
  4. import cn.com.lzt.tools.DecimalUtils;
  5. public class SupplierSumRptDto {
  6. private String goodsId;
  7. @Excel(name="货品名称", width=15)
  8. private String pname;
  9. private Date orderDate;
  10. @Excel(name="供应商名称", width=30)
  11. private String supplierName;
  12. @Excel(name="规格", width=15)
  13. private String specType;
  14. @Excel(name="计量单位", width=15,dicCode = "metering_calcu_unit")
  15. private String measureUnit;
  16. private String warehouseName;
  17. @Excel(name="数量", width=15)
  18. private String quantitystr;
  19. @Excel(name="金额", width=15)
  20. private String moneystr;
  21. @Excel(name="未到货数量", width=15)
  22. private String quantityNotArrivedstr;
  23. private Double quantity;
  24. private Double money;
  25. private Double quantityNotArrived;
  26. private String supplierid;
  27. public String getGoodsId() {
  28. return goodsId;
  29. }
  30. public void setGoodsId(String goodsId) {
  31. this.goodsId = goodsId;
  32. }
  33. public Date getOrderDate() {
  34. return orderDate;
  35. }
  36. public void setOrderDate(Date orderDate) {
  37. this.orderDate = orderDate;
  38. }
  39. public String getPname() {
  40. return pname;
  41. }
  42. public void setPname(String pname) {
  43. this.pname = pname;
  44. }
  45. public String getSupplierName() {
  46. return supplierName;
  47. }
  48. public void setSupplierName(String supplierName) {
  49. this.supplierName = supplierName;
  50. }
  51. public String getSpecType() {
  52. return specType;
  53. }
  54. public void setSpecType(String specType) {
  55. this.specType = specType;
  56. }
  57. public String getMeasureUnit() {
  58. return measureUnit;
  59. }
  60. public void setMeasureUnit(String measureUnit) {
  61. this.measureUnit = measureUnit;
  62. }
  63. public String getWarehouseName() {
  64. return warehouseName;
  65. }
  66. public void setWarehouseName(String warehouseName) {
  67. this.warehouseName = warehouseName;
  68. }
  69. public Double getQuantity() {
  70. return quantity;
  71. }
  72. public void setQuantity(Double quantity) {
  73. this.quantity = quantity;
  74. }
  75. public Double getMoney() {
  76. return money;
  77. }
  78. public void setMoney(Double money) {
  79. this.money = money;
  80. }
  81. public Double getQuantityNotArrived() {
  82. return quantityNotArrived;
  83. }
  84. public void setQuantityNotArrived(Double quantityNotArrived) {
  85. this.quantityNotArrived = quantityNotArrived;
  86. }
  87. public String getQuantitystr() {
  88. return DecimalUtils.formatToStr(quantity);
  89. }
  90. public void setQuantitystr(String quantitystr) {
  91. this.quantitystr = quantitystr;
  92. }
  93. public String getMoneystr() {
  94. return DecimalUtils.formatToStr(money);
  95. }
  96. public void setMoneystr(String moneystr) {
  97. this.moneystr = moneystr;
  98. }
  99. public String getQuantityNotArrivedstr() {
  100. return DecimalUtils.formatToStr(quantityNotArrived);
  101. }
  102. public void setQuantityNotArrivedstr(String quantityNotArrivedstr) {
  103. this.quantityNotArrivedstr = quantityNotArrivedstr;
  104. }
  105. /**
  106. * @return the supplierid
  107. */
  108. public String getSupplierid() {
  109. return supplierid;
  110. }
  111. /**
  112. * @param supplierid the supplierid to set
  113. */
  114. public void setSupplierid(String supplierid) {
  115. this.supplierid = supplierid;
  116. }
  117. }