ny
23 小时以前 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
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.Template2;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
/**
 * 列表字段
 */
@Data
public class IndexGridField2Model {
    //字段
    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;
}