充币提币管理

# 字段说明 | 属性名 | 类型 | 描述 | | ---------------------- | ------ | ------------------------------------ | | id | number | 编号 | | email | string | 邮箱 | | mobile | string | 手机号 | | lastName | string | 姓氏 | | firstName | string | 名字 | | coinCode | string | 币种代码 | | inAddress | string | 转入钱包地址 | | created | string | 创建时间,冲币时间,申请时间 | | transactionMoney | number | 数量 | | transactionNum | string | 订单编号 | | remark | string | 备注 | | remark2 | string | 驳回原因 | # 列表查询 `权限` service:coin:apply:list `GET` /exchange/exdmtransaction/list ## 公共参数 | 属性名 | 类型 | 描述 | | -------------- | ------ | -------------------------- | | mobilePhone | number | 编号 | | email | string | 邮箱 | | surName | string | 姓氏 | | trueName | string | 名字 | | inAddress | string | 转入钱包地址 | | transactionNum | string | 交易订单号 | | created_GT | string | 开始时间,2020-03-25 11:48 | | created_LT | string | 结束时间,2020-03-25 11:48 | | offset | number | 跳过多少条 | | limit | number | 查询多少条数据 | ## 响应内容 | 属性名 | 类型 | 描述 | | :------- | ------ | :------------------- | | rows | object | 列表,详细看字段说明 | | page | number | 当前页 | | pageSize | number | 一页的条数 | | total | number | 总条数 | ```json { "rows":[ { "saasId":null, "created":"2020-03-23 14:53:05", "modified":"2020-03-23 14:53:04", "id":54963, "transactionNum":"022003231453045447185", "customerId":483245, "customerName":"fcbcf29ab44844abb4389f4ce7a0add7", "accountId":6802250, "transactionType":1, "transactionMoney":80000, "status":2, "userId":null, "currencyType":"USD", "coinCode":"BTC", "website":"cn", "fee":0, "inAddress":null, "outAddress":null, "time":null, "confirmations":null, "timereceived":null, "blocktime":null, "rejectionReason":null, "ourAccountNumber":null, "orderNo":null, "trueName":null, "remark":"手动充币", "remarkType":null, "remark2":null, "btcDate":null, "btcCount":null, "surname":"", "optType":4, "isOpenCheck":0, "memo":null, "serialNumber":null, "reconciliation":null, "fromType":1, "appPersonInfo":null, "email":"", "mobile":"18711003687", "firstName":"zha", "lastName":"zha", "broasdstate":"0", "issucess":null }, { "saasId":null, "created":"2020-03-20 19:52:56", "modified":"2020-03-20 19:52:55", "id":54961, "transactionNum":"022003201952559259270", "customerId":483240, "customerName":"d79ab992280743b78d551e6fedcd6825", "accountId":6802242, "transactionType":1, "transactionMoney":800000, "status":2, "userId":null, "currencyType":"USD", "coinCode":"eos", "website":"cn", "fee":0, "inAddress":null, "outAddress":null, "time":null, "confirmations":null, "timereceived":null, "blocktime":null, "rejectionReason":null, "ourAccountNumber":null, "orderNo":null, "trueName":null, "remark":"手动充币", "remarkType":null, "remark2":null, "btcDate":null, "btcCount":null, "surname":"", "optType":4, "isOpenCheck":0, "memo":null, "serialNumber":null, "reconciliation":null, "fromType":1, "appPersonInfo":null, "email":"ehkacx2112@mail.bccto.me", "mobile":"15511111114", "firstName":"五", "lastName":"刘", "broasdstate":"0", "issucess":null } ], "page":1, "pageSize":10, "total":19, "msg":null } ``` ## 充值成功 | 参数名 | 类型 | 必传值 | | --------------- | ------ | ------ | | status | number | 2 | | transactionType | number | 1 | ## 提币申请 | 参数名 | 类型 | 必传值 | | --------------- | ------ | ------ | | status | number | 1 | | transactionType | number | 2 | ## 审核通过 | 参数名 | 类型 | 必传值 | | --------------- | ------ | ------ | | status | number | 2 | | transactionType | number | 2 | ## 审核失败\驳回 | 参数名 | 类型 | 必传值 | | --------------- | ------ | ------ | | status | number | 3 | | transactionType | number | 2 | # 通过/批量通过 `权限` service:coin:apply:pass `POST` /exchange/exdmtransaction/pass ## 参数 | 参数名 | 类型 | 描述 | | ------ | ------ | ------------------ | | ids | string | 多个用英文逗号隔开 | ## 响应内容 | 属性名 | 类型 | 描述 | | ------- | ------- | -------- | | success | boolean | 是否成功 | | msg | string | 消息 | # 驳回/批量驳回 `权限` service:coin:apply:refuse `POST` /exchange/exdmtransaction/refuse ## 参数 | 参数名 | 类型 | 描述 | | ------ | ---- | ---- | | ids | string | 多个用英文逗号隔开 | | reason | string | 驳回原因 | ## 响应内容 | 属性名 | 类型 | 描述 | | ------- | ------- | -------- | | success | boolean | 是否成功 | | msg | string | 消息 |