| | |
| | | package com.project.common.core.domain.entity; |
| | | |
| | | import javax.validation.constraints.NotBlank; |
| | | import javax.validation.constraints.Pattern; |
| | | import javax.validation.constraints.Size; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | import com.project.common.annotation.Excel; |
| | | import com.project.common.annotation.Excel.ColumnType; |
| | | import com.project.common.core.domain.BaseEntity; |
| | | import org.apache.commons.lang3.builder.ToStringBuilder; |
| | | import org.apache.commons.lang3.builder.ToStringStyle; |
| | | |
| | | import javax.validation.constraints.NotBlank; |
| | | import javax.validation.constraints.Pattern; |
| | | import javax.validation.constraints.Size; |
| | | |
| | | /** |
| | | * 字典类型表 sys_dict_type |
| | |
| | | @Excel(name = "状态", readConverterExp = "0=正常,1=停用") |
| | | private String status; |
| | | |
| | | /** 状态(0正常 1停用) */ |
| | | @Excel(name = "是否系统内置", readConverterExp = "0=自定义,1=系统内置") |
| | | private Integer isSystem; |
| | | |
| | | public Integer getIsSystem() { |
| | | return isSystem; |
| | | } |
| | | |
| | | public void setIsSystem(Integer isSystem) { |
| | | this.isSystem = isSystem; |
| | | } |
| | | |
| | | public Long getDictId() |
| | | { |
| | | return dictId; |