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
46
47
48
49
50
51
52
53
54
55
| {
| "autoMove": true,
| "id": "specCd",
| "name": "contractTypeSpec",
| "desc": "合同类型规格",
| "shareParam": "specCd",
| "shareColumn": "spec_cd",
| "shareName": "store",
| "tableName": "contract_type_spec",
| "param": {
| "specCd": "spec_cd",
| "contractTypeId": "contract_type_id",
| "storeId": "store_id",
| "specName": "spec_name",
| "specHoldplace": "spec_holdplace",
| "required": "required",
| "specShow": "spec_show",
| "specValueType": "spec_value_type",
| "specType": "spec_type",
| "listShow": "list_show",
| "statusCd": "status_cd"
| },
| "required": [
| {
| "code": "specCd",
| "msg": "规格ID不能为空"
| },
| {
| "code": "contractTypeId",
| "msg": "合同类型不能为空"
| },
| {
| "code": "specName",
| "msg": "规格名称不能为空"
| },{
| "code": "specHoldplace",
| "msg": "提示不能为空"
| },{
| "code": "required",
| "msg": "必填不能为空"
| },{
| "code": "specShow",
| "msg": "是否显示不能为空"
| },{
| "code": "specValueType",
| "msg": "规格值不能为空"
| },{
| "code": "specType",
| "msg": "规格类型不能为空"
| },{
| "code": "listShow",
| "msg": "是否list中显示不能为空"
| }
| ]
| }
|
|