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
| {
| "autoMove": true,
| "id": "detailId",
| "name": "feeManualCollectionDetail",
| "desc": "托收明细",
| "shareParam": "communityId",
| "shareColumn": "community_id",
| "shareName": "fee",
| "tableName": "fee_manual_collection_detail",
| "param": {
| "collectionId": "collection_id",
| "detailId": "detail_id",
| "feeId": "fee_id",
| "feeName": "fee_name",
| "startTime": "start_time",
| "endTime": "end_time",
| "amount": "amount",
| "communityId": "community_id",
| "state": "state",
| "statusCd": "status_cd"
| },
| "required": [
| {
| "code": "communityId",
| "msg": "小区不能为空"
| },
| {
| "code": "collectionId",
| "msg": "托收不能为空"
| },
| {
| "code": "feeId",
| "msg": "费用不能为空"
| },
| {
| "code": "startTime",
| "msg": "开始时间不能为空"
| },
| {
| "code": "endTime",
| "msg": "结束时间不能为空"
| },
| {
| "code": "amount",
| "msg": "金额不能为空"
| }
| ]
| }
|
|