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; } }