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
| {
| "param": {
| "couponName": "coupon_name",
| "uoId": "uo_id",
| "objId": "obj_id",
| "statusCd": "status_cd",
| "couponId": "coupon_id",
| "userName": "user_name",
| "userId": "user_id",
| "objType": "obj_type",
| "primary": "PRIMARY"
| },
| "name": "couponUserDetail",
| "shareColumn": "uo_id",
| "id": "uoId",
| "shareName": "acct",
| "autoMove": true,
| "required": [
| {
| "msg": "记录表不能为空",
| "code": "uoId"
| },
| {
| "msg": "优惠券ID不能为空",
| "code": "couponId"
| },
| {
| "msg": "优惠券名称不能为空",
| "code": "couponName"
| },
| {
| "msg": "用户ID不能为空",
| "code": "userId"
| },
| {
| "msg": "用户名称不能为空",
| "code": "userName"
| },
| {
| "msg": "抵消对象类型不能为空",
| "code": "objType"
| },
| {
| "msg": "抵消对象不能为空",
| "code": "objId"
| }
| ],
| "desc": "用户抵消记录",
| "shareParam": "uoId",
| "tableName": "coupon_user_detail"
| }
|
|