OutExpenseAccountBo.java 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  1. package com.goafanti.expenseAccount.bo;
  2. import java.math.BigDecimal;
  3. public class OutExpenseAccountBo {
  4. private Integer id;
  5. private BigDecimal totalAmount;
  6. private BigDecimal amount;
  7. private Integer type;
  8. private String typeOther;
  9. private Integer secondaryType;
  10. private String secondaryTypeOther;
  11. private Integer processStatus;
  12. private Integer eaeType;
  13. private String examineName;
  14. private String createTimeStr;
  15. private String aname;
  16. private String applyDepName;
  17. private String payDepName;
  18. private Integer status;
  19. private Integer targetType;
  20. private String releaseStartStr;
  21. private String releaseEndStr;
  22. private Integer mainId;
  23. private String contractNo;
  24. private String checkNo;
  25. private String userNames;
  26. private String buyerName;
  27. private String depName;
  28. private String financeName;
  29. private String attachmentUrl;
  30. private Integer examine;
  31. private BigDecimal realAmount;
  32. public BigDecimal getAmount() {
  33. return amount;
  34. }
  35. public void setAmount(BigDecimal amount) {
  36. this.amount = amount;
  37. }
  38. public Integer getMainId() {
  39. return mainId;
  40. }
  41. public void setMainId(Integer mainId) {
  42. this.mainId = mainId;
  43. }
  44. public String getBuyerName() {
  45. return buyerName;
  46. }
  47. public void setBuyerName(String buyerName) {
  48. this.buyerName = buyerName;
  49. }
  50. public BigDecimal getRealAmount() {
  51. return realAmount;
  52. }
  53. public void setRealAmount(BigDecimal realAmount) {
  54. this.realAmount = realAmount;
  55. }
  56. public String getReleaseStartStr() {
  57. return releaseStartStr;
  58. }
  59. public void setReleaseStartStr(String releaseStartStr) {
  60. this.releaseStartStr = releaseStartStr;
  61. }
  62. public String getReleaseEndStr() {
  63. return releaseEndStr;
  64. }
  65. public void setReleaseEndStr(String releaseEndStr) {
  66. this.releaseEndStr = releaseEndStr;
  67. }
  68. public Integer getSecondaryType() {
  69. return secondaryType;
  70. }
  71. public void setSecondaryType(Integer secondaryType) {
  72. this.secondaryType = secondaryType;
  73. }
  74. public String getSecondaryTypeOther() {
  75. return secondaryTypeOther;
  76. }
  77. public void setSecondaryTypeOther(String secondaryTypeOther) {
  78. this.secondaryTypeOther = secondaryTypeOther;
  79. }
  80. public String getCheckNo() {
  81. return checkNo;
  82. }
  83. public void setCheckNo(String checkNo) {
  84. this.checkNo = checkNo;
  85. }
  86. public Integer getExamine() {
  87. return examine;
  88. }
  89. public void setExamine(Integer examine) {
  90. this.examine = examine;
  91. }
  92. public String getTypeOther() {
  93. return typeOther;
  94. }
  95. public void setTypeOther(String typeOther) {
  96. this.typeOther = typeOther;
  97. }
  98. public String getAttachmentUrl() {
  99. return attachmentUrl;
  100. }
  101. public void setAttachmentUrl(String attachmentUrl) {
  102. this.attachmentUrl = attachmentUrl;
  103. }
  104. public Integer getEaeType() {
  105. return eaeType;
  106. }
  107. public void setEaeType(Integer eaeType) {
  108. this.eaeType = eaeType;
  109. }
  110. public Integer getTargetType() {
  111. return targetType;
  112. }
  113. public void setTargetType(Integer targetType) {
  114. this.targetType = targetType;
  115. }
  116. public String getContractNo() {
  117. return contractNo;
  118. }
  119. public void setContractNo(String contractNo) {
  120. this.contractNo = contractNo;
  121. }
  122. public String getUserNames() {
  123. return userNames;
  124. }
  125. public void setUserNames(String userNames) {
  126. this.userNames = userNames;
  127. }
  128. public String getDepName() {
  129. return depName;
  130. }
  131. public void setDepName(String depName) {
  132. this.depName = depName;
  133. }
  134. public String getFinanceName() {
  135. return financeName;
  136. }
  137. public void setFinanceName(String financeName) {
  138. this.financeName = financeName;
  139. }
  140. public String getAname() {
  141. return aname;
  142. }
  143. public void setAname(String aname) {
  144. this.aname = aname;
  145. }
  146. public String getApplyDepName() {
  147. return applyDepName;
  148. }
  149. public void setApplyDepName(String applyDepName) {
  150. this.applyDepName = applyDepName;
  151. }
  152. public String getPayDepName() {
  153. return payDepName;
  154. }
  155. public void setPayDepName(String payDepName) {
  156. this.payDepName = payDepName;
  157. }
  158. public String getExamineName() {
  159. return examineName;
  160. }
  161. public void setExamineName(String examineName) {
  162. this.examineName = examineName;
  163. }
  164. public Integer getStatus() {
  165. return status;
  166. }
  167. public void setStatus(Integer status) {
  168. this.status = status;
  169. }
  170. public Integer getId() {
  171. return id;
  172. }
  173. public void setId(Integer id) {
  174. this.id = id;
  175. }
  176. public BigDecimal getTotalAmount() {
  177. return totalAmount;
  178. }
  179. public void setTotalAmount(BigDecimal totalAmount) {
  180. this.totalAmount = totalAmount;
  181. }
  182. public Integer getType() {
  183. return type;
  184. }
  185. public void setType(Integer type) {
  186. this.type = type;
  187. }
  188. public Integer getProcessStatus() {
  189. return processStatus;
  190. }
  191. public void setProcessStatus(Integer processStatus) {
  192. this.processStatus = processStatus;
  193. }
  194. public String getCreateTimeStr() {
  195. return createTimeStr;
  196. }
  197. public void setCreateTimeStr(String createTimeStr) {
  198. this.createTimeStr = createTimeStr;
  199. }
  200. }