| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- package com.miniapp.bus.domain;
- import org.apache.commons.lang3.builder.ToStringBuilder;
- import org.apache.commons.lang3.builder.ToStringStyle;
- import com.miniapp.common.annotation.Excel;
- import com.miniapp.common.core.domain.BaseEntity;
- /**
- * 流程用户关联对象 bk_user_process
- *
- * @author miniapp
- * @date 2024-12-11
- */
- public class BkUserProcess extends BaseEntity
- {
- private static final long serialVersionUID = 1L;
- /** $column.columnComment */
- private Long id;
- /** 流程ID */
- @Excel(name = "流程ID")
- private Long processId;
- /** 用户ID */
- @Excel(name = "用户ID")
- private Long userId;
- /** 围栏ID */
- @Excel(name = "围栏ID")
- private Long fenceId;
- /** $column.columnComment */
- @Excel(name = "${comment}", readConverterExp = "$column.readConverterExp()")
- private String deltag;
- public void setId(Long id)
- {
- this.id = id;
- }
- public Long getId()
- {
- return id;
- }
- public void setProcessId(Long processId)
- {
- this.processId = processId;
- }
- public Long getProcessId()
- {
- return processId;
- }
- public void setUserId(Long userId)
- {
- this.userId = userId;
- }
- public Long getUserId()
- {
- return userId;
- }
- public void setFenceId(Long fenceId)
- {
- this.fenceId = fenceId;
- }
- public Long getFenceId()
- {
- return fenceId;
- }
- public void setDeltag(String deltag)
- {
- this.deltag = deltag;
- }
- public String getDeltag()
- {
- return deltag;
- }
- @Override
- public String toString() {
- return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
- .append("id", getId())
- .append("processId", getProcessId())
- .append("userId", getUserId())
- .append("fenceId", getFenceId())
- .append("deltag", getDeltag())
- .append("createBy", getCreateBy())
- .append("createTime", getCreateTime())
- .append("updateBy", getUpdateBy())
- .append("updateTime", getUpdateTime())
- .append("remark", getRemark())
- .toString();
- }
- }
|