ProjectPurchaseSum4LeaderEntity.java 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package cn.com.lzt.report.entity;
  2. public class ProjectPurchaseSum4LeaderEntity {
  3. private String projectName;
  4. //本月度
  5. private String period;
  6. private String goodsName ;
  7. private String goodsCode;
  8. private String specType;
  9. private double quantity;
  10. private double amount;
  11. //上个月度
  12. private String preperiod;
  13. private double prequantity;
  14. private double preamount;
  15. //存货分类名称
  16. private String classname;
  17. //根目录存货分类名称
  18. private String rootclassname;
  19. public String getGoodsName() {
  20. return goodsName;
  21. }
  22. public void setGoodsName(String goodsName) {
  23. this.goodsName = goodsName;
  24. }
  25. public String getProjectName() {
  26. return projectName;
  27. }
  28. public void setProjectName(String projectName) {
  29. this.projectName = projectName;
  30. }
  31. public double getQuantity() {
  32. return quantity;
  33. }
  34. public void setQuantity(double quantity) {
  35. this.quantity = quantity;
  36. }
  37. public double getAmount() {
  38. return amount;
  39. }
  40. public void setAmount(double amount) {
  41. this.amount = amount;
  42. }
  43. public String getGoodsCode() {
  44. return goodsCode;
  45. }
  46. public void setGoodsCode(String goodsCode) {
  47. this.goodsCode = goodsCode;
  48. }
  49. public String getSpecType() {
  50. return specType;
  51. }
  52. public void setSpecType(String specType) {
  53. this.specType = specType;
  54. }
  55. public String getClassname() {
  56. return classname;
  57. }
  58. public void setClassname(String classname) {
  59. this.classname = classname;
  60. }
  61. public String getRootclassname() {
  62. return rootclassname;
  63. }
  64. public void setRootclassname(String rootclassname) {
  65. this.rootclassname = rootclassname;
  66. }
  67. public String getPeriod() {
  68. return period;
  69. }
  70. public void setPeriod(String period) {
  71. this.period = period;
  72. }
  73. public String getPreperiod() {
  74. return preperiod;
  75. }
  76. public void setPreperiod(String preperiod) {
  77. this.preperiod = preperiod;
  78. }
  79. public double getPrequantity() {
  80. return prequantity;
  81. }
  82. public void setPrequantity(double prequantity) {
  83. this.prequantity = prequantity;
  84. }
  85. public double getPreamount() {
  86. return preamount;
  87. }
  88. public void setPreamount(double preamount) {
  89. this.preamount = preamount;
  90. }
  91. }