|
|
@ -1,12 +1,12 @@
|
|
|
|
package com.ruoyi.system.domain;
|
|
|
|
package com.ruoyi.system.domain;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
|
import com.mybatisflex.annotation.Table;
|
|
|
|
|
|
|
|
import com.ruoyi.common.core.annotation.Excel;
|
|
|
|
import com.ruoyi.common.core.annotation.Excel;
|
|
|
|
import com.ruoyi.common.core.web.domain.BaseEntity;
|
|
|
|
import com.ruoyi.common.core.web.domain.BaseEntity;
|
|
|
|
import lombok.Data;
|
|
|
|
import lombok.Data;
|
|
|
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
|
|
|
|
|
|
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
|
@ -17,12 +17,12 @@ import java.util.Date;
|
|
|
|
* @date 2023-07-04
|
|
|
|
* @date 2023-07-04
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
@Data
|
|
|
|
@Data
|
|
|
|
@Table("message")
|
|
|
|
@TableName("message")
|
|
|
|
public class Message extends BaseEntity
|
|
|
|
public class Message extends BaseEntity
|
|
|
|
{
|
|
|
|
{
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
|
|
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
|
@TableId(type = IdType.AUTO)
|
|
|
|
private Long id;
|
|
|
|
private Long id;
|
|
|
|
|
|
|
|
|
|
|
|
/** $column.columnComment */
|
|
|
|
/** $column.columnComment */
|
|
|
@ -78,150 +78,4 @@ public class Message extends BaseEntity
|
|
|
|
@Excel(name = "流程参数【json】")
|
|
|
|
@Excel(name = "流程参数【json】")
|
|
|
|
private String flowEntity;
|
|
|
|
private String flowEntity;
|
|
|
|
|
|
|
|
|
|
|
|
public void setId(Long id)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.id = id;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Long getId()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return id;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCreatedBy(String createdBy)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.createdBy = createdBy;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getCreatedBy()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return createdBy;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setCreatedTime(Date createdTime)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.createdTime = createdTime;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Date getCreatedTime()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return createdTime;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setModifiedBy(String modifiedBy)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.modifiedBy = modifiedBy;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getModifiedBy()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return modifiedBy;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setLastUpdatedTime(Date lastUpdatedTime)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.lastUpdatedTime = lastUpdatedTime;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Date getLastUpdatedTime()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return lastUpdatedTime;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setIsDeleted(Integer isDeleted)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.isDeleted = isDeleted;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getIsDeleted()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return isDeleted;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setMessageTitle(String messageTitle)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.messageTitle = messageTitle;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getMessageTitle()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return messageTitle;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setMessageType(String messageType)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.messageType = messageType;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getMessageType()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return messageType;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setFlowType(String flowType)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.flowType = flowType;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getFlowType()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return flowType;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setAuditor(Long auditor)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.auditor = auditor;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Long getAuditor()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return auditor;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setAuditDate(Date auditDate)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.auditDate = auditDate;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Date getAuditDate()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return auditDate;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setSourceId(Long sourceId)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.sourceId = sourceId;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Long getSourceId()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return sourceId;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setAgreeFlag(Integer agreeFlag)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.agreeFlag = agreeFlag;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Integer getAgreeFlag()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return agreeFlag;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setFlowEntity(String flowEntity)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
this.flowEntity = flowEntity;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String getFlowEntity()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
return flowEntity;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
|
|
|
public String toString() {
|
|
|
|
|
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
|
|
|
|
|
.append("id", getId())
|
|
|
|
|
|
|
|
.append("createdBy", getCreatedBy())
|
|
|
|
|
|
|
|
.append("createdTime", getCreatedTime())
|
|
|
|
|
|
|
|
.append("modifiedBy", getModifiedBy())
|
|
|
|
|
|
|
|
.append("lastUpdatedTime", getLastUpdatedTime())
|
|
|
|
|
|
|
|
.append("isDeleted", getIsDeleted())
|
|
|
|
|
|
|
|
.append("messageTitle", getMessageTitle())
|
|
|
|
|
|
|
|
.append("messageType", getMessageType())
|
|
|
|
|
|
|
|
.append("flowType", getFlowType())
|
|
|
|
|
|
|
|
.append("auditor", getAuditor())
|
|
|
|
|
|
|
|
.append("auditDate", getAuditDate())
|
|
|
|
|
|
|
|
.append("sourceId", getSourceId())
|
|
|
|
|
|
|
|
.append("agreeFlag", getAgreeFlag())
|
|
|
|
|
|
|
|
.append("flowEntity", getFlowEntity())
|
|
|
|
|
|
|
|
.toString();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|