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
| {
| "autoMove": true,
| "id": "discountId",
| "name": "feeDiscount",
| "desc": "费用折扣",
| "shareParam": "communityId",
| "shareColumn": "community_id",
| "shareName": "fee",
| "tableName": "fee_discount",
| "param": {
| "discountId": "discount_id",
| "communityId": "community_id",
| "discountType": "discount_type",
| "discountName": "discount_name",
| "ruleId": "rule_id",
| "discountDesc": "discount_desc",
| "statusCd": "status_cd"
| },
| "required": [
| {
| "code": "discountName",
| "msg": "折扣名称不能为空"
| },
| {
| "code": "ruleId",
| "msg": "规则不能为空"
| },
| {
| "code": "discountType",
| "msg": "折扣类型不能为空"
| }
| ]
| }
|
|