ExpenseAccount.java 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283
  1. package com.goafanti.common.model;
  2. import java.io.Serializable;
  3. import java.math.BigDecimal;
  4. import java.util.Date;
  5. /**
  6. * expense_account
  7. * @author
  8. */
  9. public class ExpenseAccount implements Serializable {
  10. private Integer id;
  11. /**
  12. * 公出编号
  13. */
  14. private Integer prid;
  15. /**
  16. * 订单编号
  17. */
  18. private String orderNo;
  19. /**
  20. * 报销人
  21. */
  22. private String aid;
  23. /**
  24. * 报销人名称
  25. */
  26. private String aname;
  27. /**
  28. * 分类 0=其他,1=差旅费,2=非业务报销, 3=第三方付款,4=申请借支
  29. */
  30. private Integer type;
  31. /**
  32. * 其他状态说明
  33. */
  34. private String typeOther;
  35. /**
  36. * 状态 0=草稿,1=审核中,2=完成,3=驳回
  37. */
  38. private Integer status;
  39. /**
  40. * 流程状态 0=巴员发起,1=上级审核,2=财务审核,3=总经理审核,4=董事长审核
  41. */
  42. private Integer processStatus;
  43. /**
  44. * 总金额
  45. */
  46. private BigDecimal totalAmount;
  47. /**
  48. * 合同图片
  49. */
  50. private String attachmentUrl;
  51. /**
  52. * 申请部门
  53. */
  54. private String applyDep;
  55. /**
  56. * 支付部门
  57. */
  58. private String payDep;
  59. /**
  60. * 报销帐号编号
  61. */
  62. private Integer eaaid;
  63. /**
  64. * 创建时间
  65. */
  66. private Date createTime;
  67. /**
  68. * 公出企业地址
  69. */
  70. private String districtName;
  71. /**
  72. * 公司名称
  73. */
  74. private String userNames;
  75. /**
  76. * 公出开始时间
  77. */
  78. private Date releaseStart;
  79. /**
  80. * 公出结束时间
  81. */
  82. private Date releaseEnd;
  83. /**
  84. * 时长
  85. */
  86. private Double duration;
  87. /**
  88. * 审核人员名称
  89. */
  90. private String examineName;
  91. private static final long serialVersionUID = 1L;
  92. public Integer getId() {
  93. return id;
  94. }
  95. public void setId(Integer id) {
  96. this.id = id;
  97. }
  98. public Integer getPrid() {
  99. return prid;
  100. }
  101. public void setPrid(Integer prid) {
  102. this.prid = prid;
  103. }
  104. public String getOrderNo() {
  105. return orderNo;
  106. }
  107. public void setOrderNo(String orderNo) {
  108. this.orderNo = orderNo;
  109. }
  110. public String getAid() {
  111. return aid;
  112. }
  113. public void setAid(String aid) {
  114. this.aid = aid;
  115. }
  116. public String getAname() {
  117. return aname;
  118. }
  119. public void setAname(String aname) {
  120. this.aname = aname;
  121. }
  122. public Integer getType() {
  123. return type;
  124. }
  125. public void setType(Integer type) {
  126. this.type = type;
  127. }
  128. public String getTypeOther() {
  129. return typeOther;
  130. }
  131. public void setTypeOther(String typeOther) {
  132. this.typeOther = typeOther;
  133. }
  134. public Integer getStatus() {
  135. return status;
  136. }
  137. public void setStatus(Integer status) {
  138. this.status = status;
  139. }
  140. public Integer getProcessStatus() {
  141. return processStatus;
  142. }
  143. public void setProcessStatus(Integer processStatus) {
  144. this.processStatus = processStatus;
  145. }
  146. public BigDecimal getTotalAmount() {
  147. return totalAmount;
  148. }
  149. public void setTotalAmount(BigDecimal totalAmount) {
  150. this.totalAmount = totalAmount;
  151. }
  152. public String getAttachmentUrl() {
  153. return attachmentUrl;
  154. }
  155. public void setAttachmentUrl(String attachmentUrl) {
  156. this.attachmentUrl = attachmentUrl;
  157. }
  158. public String getApplyDep() {
  159. return applyDep;
  160. }
  161. public void setApplyDep(String applyDep) {
  162. this.applyDep = applyDep;
  163. }
  164. public String getPayDep() {
  165. return payDep;
  166. }
  167. public void setPayDep(String payDep) {
  168. this.payDep = payDep;
  169. }
  170. public Integer getEaaid() {
  171. return eaaid;
  172. }
  173. public void setEaaid(Integer eaaid) {
  174. this.eaaid = eaaid;
  175. }
  176. public Date getCreateTime() {
  177. return createTime;
  178. }
  179. public void setCreateTime(Date createTime) {
  180. this.createTime = createTime;
  181. }
  182. public String getDistrictName() {
  183. return districtName;
  184. }
  185. public void setDistrictName(String districtName) {
  186. this.districtName = districtName;
  187. }
  188. public String getUserNames() {
  189. return userNames;
  190. }
  191. public void setUserNames(String userNames) {
  192. this.userNames = userNames;
  193. }
  194. public Date getReleaseStart() {
  195. return releaseStart;
  196. }
  197. public void setReleaseStart(Date releaseStart) {
  198. this.releaseStart = releaseStart;
  199. }
  200. public Date getReleaseEnd() {
  201. return releaseEnd;
  202. }
  203. public void setReleaseEnd(Date releaseEnd) {
  204. this.releaseEnd = releaseEnd;
  205. }
  206. public Double getDuration() {
  207. return duration;
  208. }
  209. public void setDuration(Double duration) {
  210. this.duration = duration;
  211. }
  212. public String getExamineName() {
  213. return examineName;
  214. }
  215. public void setExamineName(String examineName) {
  216. this.examineName = examineName;
  217. }
  218. }