| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
- package com.goafanti.common.model;
- import java.io.Serializable;
- import java.util.Date;
- /**
- * expense_account_examine
- * @author
- */
- public class ExpenseAccountExamine implements Serializable {
- /**
- * id
- */
- private Integer id;
- /**
- * 报销编号
- */
- private Integer eaid;
- /**
- * 流程截点 1=上级,2=财务,3=管理员,4=总裁/董事长
- */
- private Integer type;
- /**
- * 状态 0=未审核,1=已审核
- */
- private Integer status;
- /**
- * 审核人
- */
- private String auditor;
- /**
- * 审核人名称
- */
- private String auditorname;
- /**
- * 创建时间
- */
- private Date createTime;
- private static final long serialVersionUID = 1L;
- public ExpenseAccountExamine() {
- }
- public ExpenseAccountExamine(Integer eaid, Integer type) {
- this.eaid = eaid;
- this.type = type;
- }
- public Integer getId() {
- return id;
- }
- public void setId(Integer id) {
- this.id = id;
- }
- public Integer getEaid() {
- return eaid;
- }
- public void setEaid(Integer eaid) {
- this.eaid = eaid;
- }
- public Integer getType() {
- return type;
- }
- public void setType(Integer type) {
- this.type = type;
- }
- public Integer getStatus() {
- return status;
- }
- public void setStatus(Integer status) {
- this.status = status;
- }
- public String getAuditor() {
- return auditor;
- }
- public void setAuditor(String auditor) {
- this.auditor = auditor;
- }
- public String getAuditorname() {
- return auditorname;
- }
- public void setAuditorname(String auditorname) {
- this.auditorname = auditorname;
- }
- public Date getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
- }
|