LoadLinkDemo.java 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. package com.steerinfo.appservice.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Data;
  4. import java.util.Date;
  5. @Data
  6. public class LoadLinkDemo {
  7. /**
  8. * 车号(CAR_NO,VARCHAR,20)
  9. */
  10. @ApiModelProperty(value = "车号", required = true)
  11. private String carNo;
  12. /**
  13. * 物料编号(MATTER_NO,VARCHAR,20)
  14. */
  15. @ApiModelProperty(value = "物料编号", required = true)
  16. private String matterNo;
  17. /**
  18. * 物料名称(MATTER_NAME,VARCHAR,60)
  19. */
  20. @ApiModelProperty(value = "物料名称", required = true)
  21. private String matterName;
  22. private Date loadTime;
  23. private Long carNum;
  24. private double countWeight;
  25. @ApiModelProperty(value = "卸货人", required = false)
  26. private String loadManName;
  27. @ApiModelProperty(value = "重量", required = true)
  28. private double meterWeight;
  29. @ApiModelProperty(value = "毛重", required = false)
  30. private double grossWeight;
  31. @ApiModelProperty(value = "皮重", required = false)
  32. private double tareWeight;
  33. @ApiModelProperty(value = "净重", required = false)
  34. private double netWeight;
  35. @ApiModelProperty(value = "毛重时间", required = false)
  36. private Date grossTime;
  37. @ApiModelProperty(value = "皮重时间", required = false)
  38. private Date tareTime;
  39. @ApiModelProperty(value = "净重时间", required = false)
  40. private Date netTime;
  41. @ApiModelProperty(value = "合同号", required = false)
  42. private String contractNo;
  43. @ApiModelProperty(value = "批次号", required = false)
  44. private String batchNo;
  45. @ApiModelProperty(value = "发货单位", required = false)
  46. private String forwardingUnitName;
  47. @ApiModelProperty(value = "收货单位", required = false)
  48. private String receivingUintName;
  49. @ApiModelProperty(value = "规格", required = false)
  50. private String specName;
  51. public String getSpecName() {
  52. return specName;
  53. }
  54. public void setSpecName(String specName) {
  55. this.specName = specName;
  56. }
  57. public String getContractNo() {
  58. return contractNo;
  59. }
  60. public void setContractNo(String contractNo) {
  61. this.contractNo = contractNo;
  62. }
  63. public String getBatchNo() {
  64. return batchNo;
  65. }
  66. public void setBatchNo(String batchNo) {
  67. this.batchNo = batchNo;
  68. }
  69. public String getForwardingUnitName() {
  70. return forwardingUnitName;
  71. }
  72. public void setForwardingUnitName(String forwardingUnitName) {
  73. this.forwardingUnitName = forwardingUnitName;
  74. }
  75. public String getReceivingUintName() {
  76. return receivingUintName;
  77. }
  78. public void setReceivingUintName(String receivingUintName) {
  79. this.receivingUintName = receivingUintName;
  80. }
  81. public String getLoadManName() {
  82. return loadManName;
  83. }
  84. public void setLoadManName(String loadManName) {
  85. this.loadManName = loadManName;
  86. }
  87. public String getCarNo() {
  88. return carNo;
  89. }
  90. public void setCarNo(String carNo) {
  91. this.carNo = carNo;
  92. }
  93. public String getMatterNo() {
  94. return matterNo;
  95. }
  96. public void setMatterNo(String matterNo) {
  97. this.matterNo = matterNo;
  98. }
  99. public String getMatterName() {
  100. return matterName;
  101. }
  102. public void setMatterName(String matterName) {
  103. this.matterName = matterName;
  104. }
  105. public Date getLoadTime() {
  106. return loadTime;
  107. }
  108. public void setLoadTime(Date loadTime) {
  109. this.loadTime = loadTime;
  110. }
  111. public Long getCarNum() {
  112. return carNum;
  113. }
  114. public void setCarNum(Long carNum) {
  115. this.carNum = carNum;
  116. }
  117. public double getCountWeight() {
  118. return countWeight;
  119. }
  120. public void setCountWeight(double countWeight) {
  121. this.countWeight = countWeight;
  122. }
  123. public double getGrossWeight() {
  124. return grossWeight;
  125. }
  126. public void setGrossWeight(double grossWeight) {
  127. this.grossWeight = grossWeight;
  128. }
  129. public double getNetWeight() {
  130. return netWeight;
  131. }
  132. public void setNetWeight(double netWeight) {
  133. this.netWeight = netWeight;
  134. }
  135. public Date getGrossTime() {
  136. return grossTime;
  137. }
  138. public void setGrossTime(Date grossTime) {
  139. this.grossTime = grossTime;
  140. }
  141. public Date getTareTime() {
  142. return tareTime;
  143. }
  144. public void setTareTime(Date tareTime) {
  145. this.tareTime = tareTime;
  146. }
  147. public Date getNetTime() {
  148. return netTime;
  149. }
  150. public void setNetTime(Date netTime) {
  151. this.netTime = netTime;
  152. }
  153. public double getMeterWeight() {
  154. return meterWeight;
  155. }
  156. public void setMeterWeight(double meterWeight) {
  157. this.meterWeight = meterWeight;
  158. }
  159. public double getTareWeight() {
  160. return tareWeight;
  161. }
  162. public void setTareWeight(double tareWeight) {
  163. this.tareWeight = tareWeight;
  164. }
  165. }