OutExpenseAccountDetailsList.java 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. package com.goafanti.expenseAccount.bo;
  2. import java.math.BigDecimal;
  3. public class OutExpenseAccountDetailsList {
  4. /**
  5. * 报销查询编号
  6. */
  7. private String checkNo;
  8. /**
  9. * 0=其他,1=交通费,2=住宿费,3=市内车费,4=餐费,5=出差补贴,6=预借支,7=油费
  10. * 8=招待费,9=办公费,10=福利费,11=物业水电费,12=打印费
  11. */
  12. private Integer type;
  13. private String typeOther;
  14. private Integer sonType;
  15. private String sonTypeOther;
  16. /**
  17. * 金额
  18. */
  19. private BigDecimal amount;
  20. /**
  21. * 实付金额
  22. */
  23. private BigDecimal realAmount;
  24. /**
  25. * 合同编号
  26. */
  27. private String contractNo;
  28. /**
  29. * 申请公司
  30. */
  31. private String applyDepName;
  32. /**
  33. * 支付公司
  34. */
  35. private String payDepName;
  36. /**
  37. * 申请人
  38. */
  39. private String aname;
  40. /**
  41. * 财富负责人
  42. */
  43. private String financeName;
  44. /**
  45. * 状态 0=草稿,1=审核中,2=完成,3=驳回 ,4=撤销
  46. */
  47. private Integer status;
  48. /**
  49. * 流程状态 0=巴员发起,1=上级审核,2=财务审核,3=总经理审核,4=董事长审核
  50. */
  51. private Integer processStatus;
  52. /**
  53. * 主报销编号
  54. */
  55. private Integer mainId;
  56. /**
  57. * 客户名称
  58. */
  59. private String buyerName;
  60. /**
  61. * 创建时间
  62. */
  63. private String createTimeStr;
  64. private Integer targetType;
  65. public String getTypeOther() {
  66. return typeOther;
  67. }
  68. public void setTypeOther(String typeOther) {
  69. this.typeOther = typeOther;
  70. }
  71. public Integer getSonType() {
  72. return sonType;
  73. }
  74. public void setSonType(Integer sonType) {
  75. this.sonType = sonType;
  76. }
  77. public String getSonTypeOther() {
  78. return sonTypeOther;
  79. }
  80. public void setSonTypeOther(String sonTypeOther) {
  81. this.sonTypeOther = sonTypeOther;
  82. }
  83. public Integer getTargetType() {
  84. return targetType;
  85. }
  86. public void setTargetType(Integer targetType) {
  87. this.targetType = targetType;
  88. }
  89. public String getCheckNo() {
  90. return checkNo;
  91. }
  92. public void setCheckNo(String checkNo) {
  93. this.checkNo = checkNo;
  94. }
  95. public String getContractNo() {
  96. return contractNo;
  97. }
  98. public void setContractNo(String contractNo) {
  99. this.contractNo = contractNo;
  100. }
  101. public String getApplyDepName() {
  102. return applyDepName;
  103. }
  104. public void setApplyDepName(String applyDepName) {
  105. this.applyDepName = applyDepName;
  106. }
  107. public String getPayDepName() {
  108. return payDepName;
  109. }
  110. public void setPayDepName(String payDepName) {
  111. this.payDepName = payDepName;
  112. }
  113. public String getAname() {
  114. return aname;
  115. }
  116. public void setAname(String aname) {
  117. this.aname = aname;
  118. }
  119. public String getFinanceName() {
  120. return financeName;
  121. }
  122. public void setFinanceName(String financeName) {
  123. this.financeName = financeName;
  124. }
  125. public String getBuyerName() {
  126. return buyerName;
  127. }
  128. public void setBuyerName(String buyerName) {
  129. this.buyerName = buyerName;
  130. }
  131. public String getCreateTimeStr() {
  132. return createTimeStr;
  133. }
  134. public void setCreateTimeStr(String createTimeStr) {
  135. this.createTimeStr = createTimeStr;
  136. }
  137. public Integer getType() {
  138. return type;
  139. }
  140. public void setType(Integer type) {
  141. this.type = type;
  142. }
  143. public BigDecimal getAmount() {
  144. return amount;
  145. }
  146. public void setAmount(BigDecimal amount) {
  147. this.amount = amount;
  148. }
  149. public BigDecimal getRealAmount() {
  150. return realAmount;
  151. }
  152. public void setRealAmount(BigDecimal realAmount) {
  153. this.realAmount = realAmount;
  154. }
  155. public Integer getStatus() {
  156. return status;
  157. }
  158. public void setStatus(Integer status) {
  159. this.status = status;
  160. }
  161. public Integer getProcessStatus() {
  162. return processStatus;
  163. }
  164. public void setProcessStatus(Integer processStatus) {
  165. this.processStatus = processStatus;
  166. }
  167. public Integer getMainId() {
  168. return mainId;
  169. }
  170. public void setMainId(Integer mainId) {
  171. this.mainId = mainId;
  172. }
  173. }