| | |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel.ColumnType;
|
| | | import com.ruoyi.framework.web.domain.BaseEntity;
|
| | |
|
| | | import java.math.BigDecimal;
|
| | |
|
| | | /**
|
| | | * 字典数据表 sys_dict_data
|
| | | *
|
| | |
| | | public class SysDictData extends BaseEntity
|
| | | {
|
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | | public Long getNum() {
|
| | | return num;
|
| | | }
|
| | |
|
| | | public void setNum(Long num) {
|
| | | this.num = num;
|
| | | }
|
| | |
|
| | | /** 字典编码 */
|
| | | @Excel(name = "字典编码", cellType = ColumnType.NUMERIC)
|
| | |
| | |
|
| | | /** 样式属性(其他样式扩展) */
|
| | | private String cssClass;
|
| | |
|
| | | /** 劳保用品数量 */
|
| | | private Long num;
|
| | |
|
| | | /** 表格字典样式 */
|
| | | private String listClass;
|
| | |
| | |
|
| | | public boolean getDefault()
|
| | | {
|
| | | return UserConstants.YES.equals(this.isDefault) ? true : false;
|
| | | return UserConstants.YES.equals(this.isDefault);
|
| | | }
|
| | |
|
| | | public String getIsDefault()
|