java110
2020-09-06 727051b5955d816ae70a6572ac0279b448bec43d
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
  "templateName":"房源",
  "directories": "admin",
  "templateCode":"rentingPool",
  "templateKey":"rentingId",
  "templateKeyName":"租房ID",
  "searchCode": "rentingId",
  "searchName": "租房ID",
  "conditions": [
    {
      "name": "租房名称",
      "inputType": "input",
      "code": "rentingTitle",
      "whereCondition": "equal"
    },
    {
      "name": "预付类型",
      "inputType": "select",
      "selectValue":"1001,2002,3003",
      "selectValueName":"押一付一,押一付三,押一付六",
      "code": "paymentType",
      "whereCondition": "equal"
    },
    {
      "name": "业主名称",
      "inputType": "input",
      "code": "ownerName",
      "whereCondition": "equal"
    }
  ],
  "columns":[
    {
      "code": "rentingTitle",
      "cnCode":"出租标题",
      "desc":"必填,请填写出租标题",
      "required":true,
      "hasDefaultValue":false,
      "inputType": "input",
      "limit":"maxLength",
      "limitParam":"100",
      "limitErrInfo":"标题太长 超过100位",
      "show": true
    },
    {
      "code": "price",
      "cnCode":"租金",
      "desc":"必填,请填写出租金",
      "required":true,
      "hasDefaultValue":false,
      "inputType": "input",
      "limit":"money",
      "limitParam":"",
      "limitErrInfo":"格式错误",
      "show": true
    },
    {
      "inputType": "select",
      "selectValue":"1001,2002,3003",
      "selectValueName":"押一付一,押一付三,押一付六",
      "code": "paymentType",
      "cnCode":"预付类型",
      "desc":"必填,请填写值",
      "required":true,
      "hasDefaultValue":false,
      "limit":"num",
      "limitParam":"",
      "limitErrInfo":"格式错误",
      "show": true
    },
    {
      "code": "checkInDate",
      "cnCode":"入住时间",
      "desc":"必填,请填写入住时间",
      "required":true,
      "hasDefaultValue":false,
      "inputType": "input",
      "limit":"date",
      "limitParam":"",
      "limitErrInfo":"格式错误",
      "show": true
    },
    {
      "code":"rentingConfigId",
      "cnCode":"出租配置",
      "desc":"必填,请选择出租配置",
      "required":true,
      "hasDefaultValue":false,
      "inputType": "select",
      "selectValue":"1001,2002",
      "selectValueName":"出租配置,每月租金比例",
      "limit":"num",
      "limitParam":"",
      "limitErrInfo":"显示格式错误",
      "show": true
    },
    {
      "code": "rentingDesc",
      "cnCode":"备注",
      "desc":"选填,请填写租客收费比率",
      "required":false,
      "hasDefaultValue":false,
      "inputType": "input",
      "limit":"maxLength",
      "limitParam":"500",
      "limitErrInfo":"备注格式错误",
      "show": false
    },
    {
      "code": "ownerName",
      "cnCode":"业主名称",
      "desc":"必填,请填写业主名称",
      "required":true,
      "hasDefaultValue":false,
      "inputType": "input",
      "limit":"maxLength",
      "limitParam":"100",
      "limitErrInfo":"业主名称太长",
      "show": true
    },
    {
      "code": "ownerTel",
      "cnCode":"业主电话",
      "desc":"必填,请填写业主电话",
      "required":true,
      "hasDefaultValue":false,
      "inputType": "input",
      "limit":"phone",
      "limitParam":"",
      "limitErrInfo":"业主电话格式错误",
      "show": true
    }
  ]
}