1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| package jnpf.base.model.Template.Template5;
| import io.swagger.v3.oas.annotations.media.Schema;
| import lombok.Data;
|
| /**
| * 列表字段
| */
| @Data
| public class IndexGridField5Model {
| //字段
| private String field;
| //列名
| private String colName;
| //对齐
| private String align;
| //宽度
| private String width;
| //隐藏
| private int isHide;
| //搜索
| private int allowSearch;
| //格式化项目:dictionary、department、position、user、userAccount、userName、dateTime、date、time、switchs
| private String formatItem;
| //格式化内容:dictionaryValue
| private String formatValue;
| }
|
|