AuditItemsUsers.java 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. package com.ruoyi.approvalFlow.domain;
  2. import com.ruoyi.common.annotation.Excel;
  3. import com.ruoyi.common.core.domain.BaseEntity;
  4. /**
  5. * 审批流任务明细用户对象 audit_items_users
  6. *
  7. * @author ruoyi
  8. * @date 2021-01-21
  9. */
  10. public class AuditItemsUsers extends BaseEntity {
  11. private static final long serialVersionUID = 1L;
  12. /**
  13. * $column.columnComment
  14. */
  15. private Long id;
  16. /**
  17. * $column.columnComment
  18. */
  19. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  20. private Long pid;
  21. /**
  22. * 单据编号
  23. */
  24. @Excel(name = "单据编号")
  25. private String billNo;
  26. /**
  27. * 活动号
  28. */
  29. @Excel(name = "活动号")
  30. private Long actId;
  31. /**
  32. * 审批人
  33. */
  34. @Excel(name = "审批人")
  35. private Long userId;
  36. /**
  37. * 状态
  38. */
  39. @Excel(name = "状态")
  40. private String auditStatus;
  41. /** 存储对应审批字段 */
  42. @Excel(name = "存储对应审批字段")
  43. private String fidStatus;
  44. /** 第几次提交审批 */
  45. @Excel(name = "第几次提交审批")
  46. private Long times;
  47. public void setId(Long id) {
  48. this.id = id;
  49. }
  50. public Long getId() {
  51. return id;
  52. }
  53. public void setPid(Long pid) {
  54. this.pid = pid;
  55. }
  56. public Long getPid() {
  57. return pid;
  58. }
  59. public void setBillNo(String billNo) {
  60. this.billNo = billNo;
  61. }
  62. public String getBillNo() {
  63. return billNo;
  64. }
  65. public void setActId(Long actId) {
  66. this.actId = actId;
  67. }
  68. public Long getActId() {
  69. return actId;
  70. }
  71. public void setUserId(Long userId) {
  72. this.userId = userId;
  73. }
  74. public Long getUserId() {
  75. return userId;
  76. }
  77. public void setAuditStatus(String auditStatus) {
  78. this.auditStatus = auditStatus;
  79. }
  80. public String getAuditStatus() {
  81. return auditStatus;
  82. }
  83. public String getFidStatus() {
  84. return fidStatus;
  85. }
  86. public void setFidStatus(String fidStatus) {
  87. this.fidStatus = fidStatus;
  88. }
  89. public Long getTimes() {
  90. return times;
  91. }
  92. public void setTimes(Long times) {
  93. this.times = times;
  94. }
  95. @Override
  96. public String toString() {
  97. return "AuditItemsUsers{" +
  98. "id=" + id +
  99. ", pid=" + pid +
  100. ", billNo='" + billNo + '\'' +
  101. ", actId=" + actId +
  102. ", userId=" + userId +
  103. ", auditStatus='" + auditStatus + '\'' +
  104. ", fidStatus='" + fidStatus + '\'' +
  105. ", times=" + times +
  106. '}';
  107. }
  108. }