OutProcessName.java 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. package com.goafanti.order.bo;
  2. public class OutProcessName {
  3. private String id;
  4. private String orderNo;
  5. private Integer type;
  6. private String changeAmount;
  7. private Integer status;
  8. private Integer special;
  9. private Integer processState;
  10. private Integer isHN;
  11. private String approvalName;
  12. private Integer approvalStatus;
  13. private String yxy;
  14. private String salesmanId;
  15. private String yxjl;
  16. private String yxgly;
  17. private String zxs;
  18. private String zxsjl;
  19. private String zxsgly;
  20. private String cwzy;
  21. private String cwgly;
  22. private String dsz;
  23. public Integer getIsHN() {
  24. return isHN;
  25. }
  26. public void setIsHN(Integer isHN) {
  27. this.isHN = isHN;
  28. }
  29. public String getApprovalName() {
  30. return approvalName;
  31. }
  32. public void setApprovalName(String approvalName) {
  33. this.approvalName = approvalName;
  34. }
  35. public Integer getApprovalStatus() {
  36. return approvalStatus;
  37. }
  38. public void setApprovalStatus(Integer approvalStatus) {
  39. this.approvalStatus = approvalStatus;
  40. }
  41. public Integer getSpecial() {
  42. if (special==null)return 0;
  43. return special;
  44. }
  45. public void setSpecial(Integer special) {
  46. this.special = special;
  47. }
  48. public String getSalesmanId() {
  49. return salesmanId;
  50. }
  51. public void setSalesmanId(String salesmanId) {
  52. this.salesmanId = salesmanId;
  53. }
  54. public Integer getType() {
  55. return type;
  56. }
  57. public void setType(Integer type) {
  58. this.type = type;
  59. }
  60. public Integer getStatus() {
  61. return status;
  62. }
  63. public void setStatus(Integer status) {
  64. this.status = status;
  65. }
  66. public Integer getProcessState() {
  67. return processState;
  68. }
  69. public void setProcessState(Integer processState) {
  70. this.processState = processState;
  71. }
  72. public String getId() {
  73. return id;
  74. }
  75. public void setId(String id) {
  76. this.id = id;
  77. }
  78. public String getOrderNo() {
  79. return orderNo;
  80. }
  81. public void setOrderNo(String orderNo) {
  82. this.orderNo = orderNo;
  83. }
  84. public String getChangeAmount() {
  85. return changeAmount;
  86. }
  87. public void setChangeAmount(String changeAmount) {
  88. this.changeAmount = changeAmount;
  89. }
  90. public String getYxy() {
  91. return yxy;
  92. }
  93. public void setYxy(String yxy) {
  94. this.yxy = yxy;
  95. }
  96. public String getYxjl() {
  97. return yxjl;
  98. }
  99. public void setYxjl(String yxjl) {
  100. this.yxjl = yxjl;
  101. }
  102. public String getYxgly() {
  103. return yxgly;
  104. }
  105. public void setYxgly(String yxgly) {
  106. this.yxgly = yxgly;
  107. }
  108. public String getZxs() {
  109. return zxs;
  110. }
  111. public void setZxs(String zxs) {
  112. this.zxs = zxs;
  113. }
  114. public String getZxsjl() {
  115. return zxsjl;
  116. }
  117. public void setZxsjl(String zxsjl) {
  118. this.zxsjl = zxsjl;
  119. }
  120. public String getZxsgly() {
  121. return zxsgly;
  122. }
  123. public void setZxsgly(String zxsgly) {
  124. this.zxsgly = zxsgly;
  125. }
  126. public String getCwzy() {
  127. return cwzy;
  128. }
  129. public void setCwzy(String cwzy) {
  130. this.cwzy = cwzy;
  131. }
  132. public String getCwgly() {
  133. return cwgly;
  134. }
  135. public void setCwgly(String cwgly) {
  136. this.cwgly = cwgly;
  137. }
  138. public String getDsz() {
  139. return dsz;
  140. }
  141. public void setDsz(String dsz) {
  142. this.dsz = dsz;
  143. }
  144. }