java110
2021-06-16 755262ba9a1a3c0573a0e910bbd0a353e9e2a2c5
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
{
  "autoMove": true,
  "id": "applyId",
  "name": "accountWithdrawalApply",
  "desc": "账户提现",
  "shareParam": "acctId",
  "shareColumn": "acct_id",
  "shareName": "acct",
  "tableName": "account_withdrawal_apply",
  "param": {
    "applyId": "apply_id",
    "acctId": "acct_id",
    "amount": "amount",
    "applyUserId": "apply_user_id",
    "applyUserName": "apply_user_name",
    "applyUserTel": "apply_user_tel",
    "context": "context",
    "state": "state",
    "createTime": "create_time",
    "statusCd": "status_cd"
  },
  "required": [
    {
      "code": "acctId",
      "msg": "账户ID不能为空"
    },
    {
      "code": "amount",
      "msg": "提现金额不能为空"
    },
    {
      "code": "applyUserId",
      "msg": "申请人ID不能为空"
    },{
      "code": "applyUserName",
      "msg": "申请人名称不能为空"
    },{
      "code": "applyUserTel",
      "msg": "申请人电话不能为空"
    },{
      "code": "state",
      "msg": "申请状态不能为空"
    }
  ]
}