刘光辉
1 天以前 bb638871a7fb692d80f1b7a758f991dc0879002c
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
package jnpf.base.model.template.template3;
import lombok.Data;
 
/**
 * 列表字段
 */
@Data
public class IndexGridField3Model {
    //字段
    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;
}