ExpenseAccountExamine.java 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. package com.goafanti.common.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. /**
  5. * expense_account_examine
  6. * @author
  7. */
  8. public class ExpenseAccountExamine implements Serializable {
  9. /**
  10. * id
  11. */
  12. private Integer id;
  13. /**
  14. * 报销编号
  15. */
  16. private Integer eaid;
  17. /**
  18. * 流程截点 1=上级,2=财务,3=管理员,4=总裁/董事长
  19. */
  20. private Integer type;
  21. /**
  22. * 状态 0=未审核,1=已审核
  23. */
  24. private Integer status;
  25. /**
  26. * 审核人
  27. */
  28. private String auditor;
  29. /**
  30. * 审核人名称
  31. */
  32. private String auditorname;
  33. /**
  34. * 创建时间
  35. */
  36. private Date createTime;
  37. private static final long serialVersionUID = 1L;
  38. public ExpenseAccountExamine() {
  39. }
  40. public ExpenseAccountExamine(Integer eaid, Integer type) {
  41. this.eaid = eaid;
  42. this.type = type;
  43. }
  44. public Integer getId() {
  45. return id;
  46. }
  47. public void setId(Integer id) {
  48. this.id = id;
  49. }
  50. public Integer getEaid() {
  51. return eaid;
  52. }
  53. public void setEaid(Integer eaid) {
  54. this.eaid = eaid;
  55. }
  56. public Integer getType() {
  57. return type;
  58. }
  59. public void setType(Integer type) {
  60. this.type = type;
  61. }
  62. public Integer getStatus() {
  63. return status;
  64. }
  65. public void setStatus(Integer status) {
  66. this.status = status;
  67. }
  68. public String getAuditor() {
  69. return auditor;
  70. }
  71. public void setAuditor(String auditor) {
  72. this.auditor = auditor;
  73. }
  74. public String getAuditorname() {
  75. return auditorname;
  76. }
  77. public void setAuditorname(String auditorname) {
  78. this.auditorname = auditorname;
  79. }
  80. public Date getCreateTime() {
  81. return createTime;
  82. }
  83. public void setCreateTime(Date createTime) {
  84. this.createTime = createTime;
  85. }
  86. }