package com.ruoyi.management.api.model;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import com.ruoyi.common.core.web.domain.BaseModel;
|
import lombok.Data;
|
import org.apache.commons.lang3.builder.ToStringBuilder;
|
import org.apache.commons.lang3.builder.ToStringStyle;
|
import com.ruoyi.common.core.annotation.Excel;
|
import com.ruoyi.common.core.web.domain.BaseEntity;
|
|
/**
|
* 系统规则配置对象 t_system_config
|
*
|
* @author xiaochen
|
* @date 2023-06-07
|
*/
|
@Data
|
public class TSystemConfig
|
{
|
private static final long serialVersionUID = 1L;
|
|
/** $column.columnComment */
|
@TableId(value = "id", type = IdType.AUTO)
|
private Integer id;
|
|
/** 类型 1保养规则 */
|
@Excel(name = "公司id")
|
private Integer companyId;
|
|
/** 类型 1保养规则 */
|
@Excel(name = "类型 1保养规则")
|
private Integer type;
|
|
/** 规则内容 */
|
@Excel(name = "规则内容")
|
private String content;
|
|
public void setId(Integer id)
|
{
|
this.id = id;
|
}
|
|
public Integer getId()
|
{
|
return id;
|
}
|
public void setType(Integer type)
|
{
|
this.type = type;
|
}
|
|
public Integer getType()
|
{
|
return type;
|
}
|
public void setContent(String content)
|
{
|
this.content = content;
|
}
|
|
public String getContent()
|
{
|
return content;
|
}
|
|
@Override
|
public String toString() {
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
.append("id", getId())
|
.append("type", getType())
|
.append("content", getContent())
|
.toString();
|
}
|
}
|