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
38
39
40
41
42
43
44
45
| package cn.autoform.db.exten;
|
| import lombok.Data;
|
| /**
| *
| * @author yuezhw
| *
| */
| @Data
| public class MasterValue {
|
| //租户ID
| private String tenantID;
|
| //表单ID
| private String formID;
|
| //主数据编码
| private String defineCode;
|
| //作为参数传递时,根据具体意义的参数
| private String variableField;
|
| private String ELE_CODE;
|
| private String defindName;
|
| private String eleName;
|
| private String parentCode;
|
| //用于下拉框查询
| private String value;
|
| //用于接收已选中得code
| private String codes;
|
| //判断是否全部加载1,加载100条
| private String isAll;
|
|
|
|
| }
|
|