java110
2021-09-14 f1d1ad21cae722ceba4677cc30c133bd8c3b0701
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
  "autoMove": true,
  "id": "contractId",
  "name": "contract",
  "desc": "合同管理",
  "shareParam": "storeId",
  "shareColumn": "store_id",
  "shareName": "store",
  "tableName": "contract",
  "param": {
    "contractId": "contract_id",
    "contractCode": "contract_code",
    "contractName": "contract_name",
    "contractType": "contract_type",
    "objType": "obj_type",
    "objId": "obj_id",
    "partyA": "party_a",
    "partyB": "party_b",
    "aContacts": "a_contacts",
    "aLink": "a_link",
    "bContacts": "b_contacts",
    "bLink": "b_link",
    "operator": "operator",
    "operatorLink": "operator_link",
    "amount": "amount",
    "startTime": "start_time",
    "endTime": "end_time",
    "signingTime": "signing_time",
    "storeId": "store_id",
    "state": "state",
    "statusCd": "status_cd"
  },
  "required": [
    {
      "code": "contractCode",
      "msg": "合同编码不能为空"
    },
    {
      "code": "contractName",
      "msg": "合同名称不能为空"
    },
    {
      "code": "contractType",
      "msg": "合同类型不能为空"
    },
    {
      "code": "partyA",
      "msg": "甲方不能为空"
    },
    {
      "code": "partyB",
      "msg": "乙方不能为空"
    },
    {
      "code": "aContacts",
      "msg": "甲方联系人不能为空"
    },
    {
      "code": "aLink",
      "msg": "甲方联系电话不能为空"
    },
    {
      "code": "bContacts",
      "msg": "乙方联系人不能为空"
    },
    {
      "code": "bLink",
      "msg": "乙方联系电话不能为空"
    },
    {
      "code": "operator",
      "msg": "经办人不能为空"
    },
    {
      "code": "operatorLink",
      "msg": "经办人联系电话不能为空"
    },
    {
      "code": "startTime",
      "msg": "开始时间不能为空"
    },
    {
      "code": "endTime",
      "msg": "结束时间不能为空"
    },
    {
      "code": "signingTime",
      "msg": "签订时间不能为空"
    }
  ]
}