田源
2023-11-06 05200e44ae549e0a68514123dde3765b29dff944
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
27
28
29
30
31
32
33
34
35
36
37
package com.vci.ubcs.code.vo.webserviceModel.coderule;
 
import lombok.Data;
 
@Data
public class CodeShowFieldConfigVO {
    private String  field;// id,
    private String  title;// 编号,
    private String  fieldType;// text,
    private String  fieldTypeText;// 文本框,
    private boolean sort;// true,
    private String  attrSortField;// id,
    private String  width;// 150,
    private boolean isquery;// true,
    private boolean $cellEdit;// false,
    private int $index;// 0,
    private String  $fieldTypeText;// 文本框,
    private String  $fixedPosition;// ""
 
    @Override
    public String toString() {
        return "CodeShowFieldConfigVO{" +
            "field='" + field + '\'' +
            ", title='" + title + '\'' +
            ", fieldType='" + fieldType + '\'' +
            ", fieldTypeText='" + fieldTypeText + '\'' +
            ", sort=" + sort +
            ", attrSortField='" + attrSortField + '\'' +
            ", width='" + width + '\'' +
            ", isquery=" + isquery +
            ", $cellEdit=" + $cellEdit +
            ", $index=" + $index +
            ", $fieldTypeText='" + $fieldTypeText + '\'' +
            ", $fixedPosition='" + $fixedPosition + '\'' +
            '}';
    }
}