ApplyWorkReceivable.java 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408
  1. package com.idea.oa.apply.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. public class ApplyWorkReceivable implements Serializable {
  5. private String id;
  6. private String planno;
  7. private String planstatus;
  8. private String ctrid;
  9. private String contractno;
  10. private String custid;
  11. private String custname;
  12. private String proid;
  13. private String proname;
  14. private String chargedby;
  15. private Date ardate;
  16. private Double aramount;
  17. private String arname;
  18. private String receiptno;
  19. private Date receiptdate;
  20. private Double receiptamount;
  21. private Date receivedate;
  22. private Double receiveamount;
  23. private Double adjustamount;
  24. private String dealedby;
  25. private Date dealedat;
  26. private Date noticedate;
  27. private String updatedby;
  28. private Date createdat;
  29. private Date updatedat;
  30. private String sysId;
  31. private String deliverymethod;
  32. private Date deliverydate;
  33. private String receiveuser;
  34. private String supplement;
  35. private String paymentmethod;
  36. private String othermethod;
  37. private Double cashamount;
  38. private Double telegraphicamount;
  39. private Double otheramount;
  40. private String adjustuser;
  41. private String groupId;
  42. private String adjustreason;
  43. private String paymentnotes;
  44. private String adjustexplain;
  45. private static final long serialVersionUID = 1L;
  46. public String getId() {
  47. return id;
  48. }
  49. public void setId(String id) {
  50. this.id = id == null ? null : id.trim();
  51. }
  52. public String getPlanno() {
  53. return planno;
  54. }
  55. public void setPlanno(String planno) {
  56. this.planno = planno == null ? null : planno.trim();
  57. }
  58. public String getPlanstatus() {
  59. return planstatus;
  60. }
  61. public void setPlanstatus(String planstatus) {
  62. this.planstatus = planstatus == null ? null : planstatus.trim();
  63. }
  64. public String getCtrid() {
  65. return ctrid;
  66. }
  67. public void setCtrid(String ctrid) {
  68. this.ctrid = ctrid == null ? null : ctrid.trim();
  69. }
  70. public String getContractno() {
  71. return contractno;
  72. }
  73. public void setContractno(String contractno) {
  74. this.contractno = contractno == null ? null : contractno.trim();
  75. }
  76. public String getCustid() {
  77. return custid;
  78. }
  79. public void setCustid(String custid) {
  80. this.custid = custid == null ? null : custid.trim();
  81. }
  82. public String getCustname() {
  83. return custname;
  84. }
  85. public void setCustname(String custname) {
  86. this.custname = custname == null ? null : custname.trim();
  87. }
  88. public String getProid() {
  89. return proid;
  90. }
  91. public void setProid(String proid) {
  92. this.proid = proid == null ? null : proid.trim();
  93. }
  94. public String getProname() {
  95. return proname;
  96. }
  97. public void setProname(String proname) {
  98. this.proname = proname == null ? null : proname.trim();
  99. }
  100. public String getChargedby() {
  101. return chargedby;
  102. }
  103. public void setChargedby(String chargedby) {
  104. this.chargedby = chargedby == null ? null : chargedby.trim();
  105. }
  106. public Date getArdate() {
  107. return ardate;
  108. }
  109. public void setArdate(Date ardate) {
  110. this.ardate = ardate;
  111. }
  112. public Double getAramount() {
  113. return aramount;
  114. }
  115. public void setAramount(Double aramount) {
  116. this.aramount = aramount;
  117. }
  118. public String getArname() {
  119. return arname;
  120. }
  121. public void setArname(String arname) {
  122. this.arname = arname == null ? null : arname.trim();
  123. }
  124. public String getReceiptno() {
  125. return receiptno;
  126. }
  127. public void setReceiptno(String receiptno) {
  128. this.receiptno = receiptno == null ? null : receiptno.trim();
  129. }
  130. public Date getReceiptdate() {
  131. return receiptdate;
  132. }
  133. public void setReceiptdate(Date receiptdate) {
  134. this.receiptdate = receiptdate;
  135. }
  136. public Double getReceiptamount() {
  137. return receiptamount;
  138. }
  139. public void setReceiptamount(Double receiptamount) {
  140. this.receiptamount = receiptamount;
  141. }
  142. public Date getReceivedate() {
  143. return receivedate;
  144. }
  145. public void setReceivedate(Date receivedate) {
  146. this.receivedate = receivedate;
  147. }
  148. public Double getReceiveamount() {
  149. return receiveamount;
  150. }
  151. public void setReceiveamount(Double receiveamount) {
  152. this.receiveamount = receiveamount;
  153. }
  154. public Double getAdjustamount() {
  155. return adjustamount;
  156. }
  157. public void setAdjustamount(Double adjustamount) {
  158. this.adjustamount = adjustamount;
  159. }
  160. public String getDealedby() {
  161. return dealedby;
  162. }
  163. public void setDealedby(String dealedby) {
  164. this.dealedby = dealedby == null ? null : dealedby.trim();
  165. }
  166. public Date getDealedat() {
  167. return dealedat;
  168. }
  169. public void setDealedat(Date dealedat) {
  170. this.dealedat = dealedat;
  171. }
  172. public Date getNoticedate() {
  173. return noticedate;
  174. }
  175. public void setNoticedate(Date noticedate) {
  176. this.noticedate = noticedate;
  177. }
  178. public String getUpdatedby() {
  179. return updatedby;
  180. }
  181. public void setUpdatedby(String updatedby) {
  182. this.updatedby = updatedby == null ? null : updatedby.trim();
  183. }
  184. public Date getCreatedat() {
  185. return createdat;
  186. }
  187. public void setCreatedat(Date createdat) {
  188. this.createdat = createdat;
  189. }
  190. public Date getUpdatedat() {
  191. return updatedat;
  192. }
  193. public void setUpdatedat(Date updatedat) {
  194. this.updatedat = updatedat;
  195. }
  196. public String getSysId() {
  197. return sysId;
  198. }
  199. public void setSysId(String sysId) {
  200. this.sysId = sysId == null ? null : sysId.trim();
  201. }
  202. public String getDeliverymethod() {
  203. return deliverymethod;
  204. }
  205. public void setDeliverymethod(String deliverymethod) {
  206. this.deliverymethod = deliverymethod == null ? null : deliverymethod.trim();
  207. }
  208. public Date getDeliverydate() {
  209. return deliverydate;
  210. }
  211. public void setDeliverydate(Date deliverydate) {
  212. this.deliverydate = deliverydate;
  213. }
  214. public String getReceiveuser() {
  215. return receiveuser;
  216. }
  217. public void setReceiveuser(String receiveuser) {
  218. this.receiveuser = receiveuser == null ? null : receiveuser.trim();
  219. }
  220. public String getSupplement() {
  221. return supplement;
  222. }
  223. public void setSupplement(String supplement) {
  224. this.supplement = supplement == null ? null : supplement.trim();
  225. }
  226. public String getPaymentmethod() {
  227. return paymentmethod;
  228. }
  229. public void setPaymentmethod(String paymentmethod) {
  230. this.paymentmethod = paymentmethod == null ? null : paymentmethod.trim();
  231. }
  232. public String getOthermethod() {
  233. return othermethod;
  234. }
  235. public void setOthermethod(String othermethod) {
  236. this.othermethod = othermethod == null ? null : othermethod.trim();
  237. }
  238. public Double getCashamount() {
  239. return cashamount;
  240. }
  241. public void setCashamount(Double cashamount) {
  242. this.cashamount = cashamount;
  243. }
  244. public Double getTelegraphicamount() {
  245. return telegraphicamount;
  246. }
  247. public void setTelegraphicamount(Double telegraphicamount) {
  248. this.telegraphicamount = telegraphicamount;
  249. }
  250. public Double getOtheramount() {
  251. return otheramount;
  252. }
  253. public void setOtheramount(Double otheramount) {
  254. this.otheramount = otheramount;
  255. }
  256. public String getAdjustuser() {
  257. return adjustuser;
  258. }
  259. public void setAdjustuser(String adjustuser) {
  260. this.adjustuser = adjustuser == null ? null : adjustuser.trim();
  261. }
  262. public String getGroupId() {
  263. return groupId;
  264. }
  265. public void setGroupId(String groupId) {
  266. this.groupId = groupId == null ? null : groupId.trim();
  267. }
  268. public String getAdjustreason() {
  269. return adjustreason;
  270. }
  271. public void setAdjustreason(String adjustreason) {
  272. this.adjustreason = adjustreason == null ? null : adjustreason.trim();
  273. }
  274. public String getPaymentnotes() {
  275. return paymentnotes;
  276. }
  277. public void setPaymentnotes(String paymentnotes) {
  278. this.paymentnotes = paymentnotes == null ? null : paymentnotes.trim();
  279. }
  280. public String getAdjustexplain() {
  281. return adjustexplain;
  282. }
  283. public void setAdjustexplain(String adjustexplain) {
  284. this.adjustexplain = adjustexplain == null ? null : adjustexplain.trim();
  285. }
  286. }