| | |
| | |
|
| | | import javax.validation.constraints.NotBlank;
|
| | | import javax.validation.constraints.Size;
|
| | | import org.apache.commons.lang3.builder.ToStringBuilder;
|
| | | import org.apache.commons.lang3.builder.ToStringStyle;
|
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel;
|
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel.ColumnType;
|
| | | import com.ruoyi.framework.web.domain.BaseEntity;
|
| | |
|
| | | /**
|
| | |
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | /** 字典主键 */
|
| | | @Excel(name = "字典主键", cellType = ColumnType.NUMERIC)
|
| | | private Long dictId;
|
| | |
|
| | | /** 字典名称 */
|
| | | @Excel(name = "字典名称")
|
| | | private String dictName;
|
| | |
|
| | | /** 字典类型 */
|
| | | @Excel(name = "字典类型")
|
| | | private String dictType;
|
| | |
|
| | | /** 状态(0正常 1停用) */
|
| | | @Excel(name = "状态", readConverterExp = "0=正常,1=停用")
|
| | | private String status;
|
| | |
|
| | | public Long getDictId()
|
| | |
| | | {
|
| | | this.status = status;
|
| | | }
|
| | | |
| | | @Override
|
| | | public String toString() {
|
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
| | | .append("dictId", getDictId())
|
| | | .append("dictName", getDictName())
|
| | | .append("dictType", getDictType())
|
| | | .append("status", getStatus())
|
| | | .append("createBy", getCreateBy())
|
| | | .append("createTime", getCreateTime())
|
| | | .append("updateBy", getUpdateBy())
|
| | | .append("updateTime", getUpdateTime())
|
| | | .append("remark", getRemark())
|
| | | .toString();
|
| | | }
|
| | | }
|