SyViewEntity.java 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. package net.chenlin.dp.modules.sys.entity;
  2. import java.io.Serializable;
  3. import java.sql.Timestamp;
  4. import java.util.List;
  5. /**
  6. * 同步消息表
  7. */
  8. public class SyViewEntity implements Serializable {
  9. private static final long serialVersionUID = 1L;
  10. /**
  11. * 钉钉中id
  12. */
  13. private String oaId;
  14. /**
  15. * 报销类型
  16. */
  17. private String parType;
  18. /**
  19. * 费用科目
  20. */
  21. private String accountCode;
  22. /**
  23. * 钉钉中部门名称
  24. */
  25. private String deptName;
  26. /**
  27. * 钉钉中部门名称
  28. */
  29. private String deptCode;
  30. /**
  31. * 钉钉中人员编码
  32. */
  33. private String jobNumber;
  34. /**
  35. * 同步返回消息
  36. */
  37. private String syMessage;
  38. /**
  39. * 创建时间
  40. */
  41. private Timestamp createTime;
  42. /**
  43. * 备用金、报销单
  44. */
  45. private String tableType;
  46. public String getTableType() {
  47. return tableType;
  48. }
  49. public void setTableType(String tableType) {
  50. this.tableType = tableType;
  51. }
  52. public String getOaId() {
  53. return oaId;
  54. }
  55. public void setOaId(String oaId) {
  56. this.oaId = oaId;
  57. }
  58. public String getParType() {
  59. return parType;
  60. }
  61. public void setParType(String parType) {
  62. this.parType = parType;
  63. }
  64. public String getAccountCode() {
  65. return accountCode;
  66. }
  67. public void setAccountCode(String accountCode) {
  68. this.accountCode = accountCode;
  69. }
  70. public String getDeptName() {
  71. return deptName;
  72. }
  73. public void setDeptName(String deptName) {
  74. this.deptName = deptName;
  75. }
  76. public String getDeptCode() {
  77. return deptCode;
  78. }
  79. public void setDeptCode(String deptCode) {
  80. this.deptCode = deptCode;
  81. }
  82. public String getJobNumber() {
  83. return jobNumber;
  84. }
  85. public void setJobNumber(String jobNumber) {
  86. this.jobNumber = jobNumber;
  87. }
  88. public String getSyMessage() {
  89. return syMessage;
  90. }
  91. public void setSyMessage(String syMessage) {
  92. this.syMessage = syMessage;
  93. }
  94. public Timestamp getCreateTime() {
  95. return createTime;
  96. }
  97. public void setCreateTime(Timestamp createTime) {
  98. this.createTime = createTime;
  99. }
  100. }