PurchaserProduceTotalDTO.java 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. package com.ruoyi.app.DTO;
  2. public class PurchaserProduceTotalDTO {
  3. private Long purchaserId; // 采购商ID
  4. private String purchaserName; // 采购商名称
  5. private Long totalAmount; // 总金额
  6. private String dateTag; // 日期标签
  7. private Double totalSideWeight; // 总边猪重量
  8. private Double totalHeadWeight; // 总猪头重量
  9. private Double totalRedWeight; // 总红内脏重量
  10. private Double totalWhiteWeight; // 总白内脏重量
  11. private String salePlace; // 销售去向
  12. // purchaserId 的 getter 和 setter 方法
  13. public Long getPurchaserId() {
  14. return purchaserId;
  15. }
  16. public void setPurchaserId(Long purchaserId) {
  17. this.purchaserId = purchaserId;
  18. }
  19. // purchaserName 的 getter 和 setter 方法
  20. public String getPurchaserName() {
  21. return purchaserName;
  22. }
  23. public void setPurchaserName(String purchaserName) {
  24. this.purchaserName = purchaserName;
  25. }
  26. // totalAmount 的 getter 和 setter 方法
  27. public Long getTotalAmount() {
  28. return totalAmount;
  29. }
  30. public void setTotalAmount(Long totalAmount) {
  31. this.totalAmount = totalAmount;
  32. }
  33. // dateTag 的 getter 和 setter 方法
  34. public String getDateTag() {
  35. return dateTag;
  36. }
  37. public void setDateTag(String dateTag) {
  38. this.dateTag = dateTag;
  39. }
  40. // totalSideWeight 的 getter 和 setter 方法
  41. public Double getTotalSideWeight() {
  42. return totalSideWeight;
  43. }
  44. public void setTotalSideWeight(Double totalSideWeight) {
  45. this.totalSideWeight = totalSideWeight;
  46. }
  47. // totalHeadWeight 的 getter 和 setter 方法
  48. public Double getTotalHeadWeight() {
  49. return totalHeadWeight;
  50. }
  51. public void setTotalHeadWeight(Double totalHeadWeight) {
  52. this.totalHeadWeight = totalHeadWeight;
  53. }
  54. // totalRedWeight 的 getter 和 setter 方法
  55. public Double getTotalRedWeight() {
  56. return totalRedWeight;
  57. }
  58. public void setTotalRedWeight(Double totalRedWeight) {
  59. this.totalRedWeight = totalRedWeight;
  60. }
  61. // totalWhiteWeight 的 getter 和 setter 方法
  62. public Double getTotalWhiteWeight() {
  63. return totalWhiteWeight;
  64. }
  65. public void setTotalWhiteWeight(Double totalWhiteWeight) {
  66. this.totalWhiteWeight = totalWhiteWeight;
  67. }
  68. public String getSalePlace() {
  69. return salePlace;
  70. }
  71. public void setSalePlace(String salePlace) {
  72. this.salePlace = salePlace;
  73. }
  74. }