济菏高速数据中心代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

98 lines
2.3 KiB

package com.zc.business.domain;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
import com.ruoyi.common.annotation.Excel;
import com.ruoyi.common.core.domain.BaseEntity;
/**
* 事件流程配置对象 dc_process_config
*
* @author ruoyi
* @date 2024-01-03
*/
@ApiModel(value = "事件流程配置对象")
public class DcProcessConfig
{
/** id */
private Long id;
/** 事件类型 */
@ApiModelProperty(value = "事件类型")
private Integer eventType;
/** 处置流程 */
@ApiModelProperty(value = "处置流程")
@Excel(name = "处置流程")
private String nodeNode;
/** 处置流程名称 */
@ApiModelProperty(value = "处置流程名称")
@Excel(name = "处置流程名称")
private String processNode;
/** 常用语 格式:[常用语1,常用语2] */
@ApiModelProperty(value = "常用语 格式:[常用语1,常用语2]")
@Excel(name = "常用语 格式:[常用语1,常用语2]")
private String commonPhrases;
public void setId(Long id)
{
this.id = id;
}
public Long getId()
{
return id;
}
public void setEventType(Integer eventType)
{
this.eventType = eventType;
}
public Integer getEventType()
{
return eventType;
}
public void setNodeNode(String nodeNode)
{
this.nodeNode = nodeNode;
}
public String getNodeNode()
{
return nodeNode;
}
public void setProcessNode(String processNode)
{
this.processNode = processNode;
}
public String getProcessNode()
{
return processNode;
}
public void setCommonPhrases(String commonPhrases)
{
this.commonPhrases = commonPhrases;
}
public String getCommonPhrases()
{
return commonPhrases;
}
@Override
public String toString() {
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
.append("id", getId())
.append("eventType", getEventType())
.append("nodeNode", getNodeNode())
.append("processNode", getProcessNode())
.append("commonPhrases", getCommonPhrases())
.toString();
}
}