BkUserProcess.java 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. package com.miniapp.bus.domain;
  2. import org.apache.commons.lang3.builder.ToStringBuilder;
  3. import org.apache.commons.lang3.builder.ToStringStyle;
  4. import com.miniapp.common.annotation.Excel;
  5. import com.miniapp.common.core.domain.BaseEntity;
  6. /**
  7. * 流程用户关联对象 bk_user_process
  8. *
  9. * @author miniapp
  10. * @date 2024-12-11
  11. */
  12. public class BkUserProcess extends BaseEntity
  13. {
  14. private static final long serialVersionUID = 1L;
  15. /** $column.columnComment */
  16. private Long id;
  17. /** 流程ID */
  18. @Excel(name = "流程ID")
  19. private Long processId;
  20. /** 用户ID */
  21. @Excel(name = "用户ID")
  22. private Long userId;
  23. /** 围栏ID */
  24. @Excel(name = "围栏ID")
  25. private Long fenceId;
  26. /** $column.columnComment */
  27. @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
  28. private String deltag;
  29. public void setId(Long id)
  30. {
  31. this.id = id;
  32. }
  33. public Long getId()
  34. {
  35. return id;
  36. }
  37. public void setProcessId(Long processId)
  38. {
  39. this.processId = processId;
  40. }
  41. public Long getProcessId()
  42. {
  43. return processId;
  44. }
  45. public void setUserId(Long userId)
  46. {
  47. this.userId = userId;
  48. }
  49. public Long getUserId()
  50. {
  51. return userId;
  52. }
  53. public void setFenceId(Long fenceId)
  54. {
  55. this.fenceId = fenceId;
  56. }
  57. public Long getFenceId()
  58. {
  59. return fenceId;
  60. }
  61. public void setDeltag(String deltag)
  62. {
  63. this.deltag = deltag;
  64. }
  65. public String getDeltag()
  66. {
  67. return deltag;
  68. }
  69. @Override
  70. public String toString() {
  71. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  72. .append("id", getId())
  73. .append("processId", getProcessId())
  74. .append("userId", getUserId())
  75. .append("fenceId", getFenceId())
  76. .append("deltag", getDeltag())
  77. .append("createBy", getCreateBy())
  78. .append("createTime", getCreateTime())
  79. .append("updateBy", getUpdateBy())
  80. .append("updateTime", getUpdateTime())
  81. .append("remark", getRemark())
  82. .toString();
  83. }
  84. }