java110
2020-09-17 daa5832f0915006437060ca2a082d3c2043fa7b1
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
{
  "autoMove": true,
  "id": "appointmentId",
  "name": "rentingAppointment",
  "desc": "租赁预约",
  "shareParam": "storeId",
  "shareColumn": "store_id",
  "shareName": "user",
  "tableName": "renting_appointment",
  "param": {
    "appointmentId": "appointment_id",
    "tenantName": "tenant_name",
    "tenantSex": "tenant_sex",
    "tenantTel": "tenant_tel",
    "appointmentTime": "appointment_time",
    "appointmentRoomId": "appointment_room_id",
    "roomId": "room_id",
    "storeId": "store_id",
    "state": "state",
    "msg": "msg",
    "remark": "remark",
    "statusCd": "status_cd"
  },
  "required": [
    {
      "code": "tenantName",
      "msg": "租客名称不能为空"
    },
    {
      "code": "tenantSex",
      "msg": "租客性别不能为空"
    },
    {
      "code": "tenantTel",
      "msg": "租客电话不能为空"
    },
    {
      "code": "appointmentTime",
      "msg": "预约时间不能为空"
    }
  ]
}