BusinessScedule.java 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /**
  2. *
  3. */
  4. package com.chinaitop.depot.agile.model;
  5. /**
  6. * 粮食业务管理,进度查询.
  7. * <p>Title: BusinessScedule</p>
  8. * <p>Description: </p>
  9. * @author yaoyabin
  10. * @date 2017年11月1日 下午8:04:31
  11. */
  12. public class BusinessScedule {
  13. // 可研报告号 对应 粮食业务管理中的计划id
  14. private String jhId;
  15. // 合同编号 对应 粮食业务管理中的合同id.
  16. private String htId;
  17. // 通知单号 对应 粮食业务管理中的通知单id.
  18. private String tzdId;
  19. // 仓廒作业类型 1:入库 3:出库
  20. private String crkLx;
  21. // 入库数量.
  22. private String sumRksl;
  23. // 出库数量.
  24. private String sumCksl;
  25. //完成数量
  26. private String sumWcsl;
  27. //剩余数量
  28. private String sumSysl;
  29. //提货单号
  30. private String thdh;
  31. public String getThdh() {
  32. return thdh;
  33. }
  34. public void setThdh(String thdh) {
  35. this.thdh = thdh;
  36. }
  37. public String getSumWcsl() {
  38. return sumWcsl;
  39. }
  40. public void setSumWcsl(String sumWcsl) {
  41. this.sumWcsl = sumWcsl;
  42. }
  43. /**
  44. * @return the jhId
  45. */
  46. public String getJhId() {
  47. return jhId;
  48. }
  49. /**
  50. * @param jhId the jhId to set
  51. */
  52. public void setJhId(String jhId) {
  53. this.jhId = jhId;
  54. }
  55. /**
  56. * @return the htId
  57. */
  58. public String getHtId() {
  59. return htId;
  60. }
  61. /**
  62. * @param htId the htId to set
  63. */
  64. public void setHtId(String htId) {
  65. this.htId = htId;
  66. }
  67. /**
  68. * @return the tzdId
  69. */
  70. public String getTzdId() {
  71. return tzdId;
  72. }
  73. /**
  74. * @param tzdId the tzdId to set
  75. */
  76. public void setTzdId(String tzdId) {
  77. this.tzdId = tzdId;
  78. }
  79. /**
  80. * @return the sumRksl
  81. */
  82. public String getSumRksl() {
  83. return sumRksl;
  84. }
  85. /**
  86. * @param sumRksl the sumRksl to set
  87. */
  88. public void setSumRksl(String sumRksl) {
  89. this.sumRksl = sumRksl;
  90. }
  91. /**
  92. * @return the sumCksl
  93. */
  94. public String getSumCksl() {
  95. return sumCksl;
  96. }
  97. /**
  98. * @param sumCksl the sumCksl to set
  99. */
  100. public void setSumCksl(String sumCksl) {
  101. this.sumCksl = sumCksl;
  102. }
  103. /**
  104. * @return the crkLx
  105. */
  106. public String getCrkLx() {
  107. return crkLx;
  108. }
  109. /**
  110. * @param crkLx the crkLx to set
  111. */
  112. public void setCrkLx(String crkLx) {
  113. this.crkLx = crkLx;
  114. }
  115. public String getSumSysl() {
  116. return sumSysl;
  117. }
  118. public void setSumSysl(String sumSysl) {
  119. this.sumSysl = sumSysl;
  120. }
  121. }