package net.chenlin.dp.modules.sys.entity; import java.io.Serializable; import java.sql.Timestamp; import java.util.List; /** * 同步消息表 */ public class SyViewEntity implements Serializable { private static final long serialVersionUID = 1L; /** * 钉钉中id */ private String oaId; /** * 报销类型 */ private String parType; /** * 费用科目 */ private String accountCode; /** * 钉钉中部门名称 */ private String deptName; /** * 钉钉中部门名称 */ private String deptCode; /** * 钉钉中人员编码 */ private String jobNumber; /** * 同步返回消息 */ private String syMessage; /** * 创建时间 */ private Timestamp createTime; /** * 备用金、报销单 */ private String tableType; public String getTableType() { return tableType; } public void setTableType(String tableType) { this.tableType = tableType; } public String getOaId() { return oaId; } public void setOaId(String oaId) { this.oaId = oaId; } public String getParType() { return parType; } public void setParType(String parType) { this.parType = parType; } public String getAccountCode() { return accountCode; } public void setAccountCode(String accountCode) { this.accountCode = accountCode; } public String getDeptName() { return deptName; } public void setDeptName(String deptName) { this.deptName = deptName; } public String getDeptCode() { return deptCode; } public void setDeptCode(String deptCode) { this.deptCode = deptCode; } public String getJobNumber() { return jobNumber; } public void setJobNumber(String jobNumber) { this.jobNumber = jobNumber; } public String getSyMessage() { return syMessage; } public void setSyMessage(String syMessage) { this.syMessage = syMessage; } public Timestamp getCreateTime() { return createTime; } public void setCreateTime(Timestamp createTime) { this.createTime = createTime; } }