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
| {
| "autoMove": false,
| "id": "attrId",
| "name": "userAttr",
| "desc": "用户属性ID",
| "shareParam": "storeId",
| "shareColumn": "store_id",
| "shareName": "cust",
| "tableName": "mall_user_attr",
| "param": {
| "userId": "user_id",
| "attrId": "attr_id",
| "specCd": "spec_cd",
| "value": "value",
| "statusCd": "status_cd"
| },
| "required": [
| {
| "code": "userId",
| "msg": "用户ID不能为空"
| },
| {
| "code": "specCd",
| "msg": "用户规格不能为空"
| }
| ]
| }
|
|