文档
测试

充值管理->主查询

POST
http://127.0.0.1:8888/mesh/userrecharge/list

接口描述

充值管理->主查询

请求头

参数名
类型
描述
必填
Content-Type
application/json
必填

请求参数

application/json
参数名
类型
描述
必填
pageVo
object
分页参数
必填
pageNumber
int
示例:1
必填
pageSize
int
示例:10
必填
sort
string
示例:create_time
必填
order
string
示例:desc
必填
rechargeOrderNo
string
充值单号,示例:CZ20211104153346000004
可选
startTime
string
开始时间,示例:2021-11-04 00:00:00
可选
endTime
string
结束时间,示例:2021-11-04 23:59:59
可选
departmentId
String
充值机构
可选
orderStatus
int
订单状态1.未审批 2. 审批中 3.审批不通过 4.已完成 5.已关闭 全部.传空
可选

请求示例

``` { "pageVo": {"pageNumber": 1, "pageSize": 10, "sort": "create_time", "order": "desc"}, "rechargeOrderNo":"CZ20211104153346000004", "startTime":"2021-11-04 00:00:00", "endTime":"2021-11-04 23:59:59", "departmentId":"1222222", "orderStatus":1 } ```

响应参数

参数名
类型
描述
必填
success
boolean
示例:true
必填
message
string
示例:success
必填
code
int
示例:200成功/其他失败
必填
timestamp
int
示例:1636012129168
必填
result
object
返回值
必填
records
array
数据列表
必填
rechargeId
string
充值id,示例:508665165827387394
必填
rechargeOrderNo
string
充值单号,示例:CZ20211104153346000004
必填
departmentId
string
充值账户(机构id),示例:1222222
必填
departmentName
string
充值账户名称(机构名称)示例:湖南总部
必填
rechargeAmount
float
充值金额,示例:30.22
必填
creator
string
创建人id,示例:1450276191108993024
必填
creatorName
string
创建人名称,示例:1234567
必填
createTime
string
创建时间,示例:2021-11-04 15:33:46
必填
payType
int
支付方式 1,"线下付款补录" 2,"支付宝" 3,"微信"
必填
payTime
date
支付时间
必填
payStatus
int
支付状态 0:未支付 1:已支付 示例:0
必填
orderStatus
int
订单状态1.未审批 2. 审批中 3.审批不通过 4.已完成 5.已关闭 示例:1
必填
remark
object
备注
必填
total
int
总条数,示例:1
必填

响应示例

``` { "success": true, "message": "success", "code": 200, "timestamp": 1636012129168, "result": { "records": [ { "rechargeId": "508665165827387394", "rechargeOrderNo": "CZ20211104153346000004", "departmentId": "1222222", "departmentName": "湖南总部", "rechargeAmount": 30.22, "creator": "1450276191108993024", "creatorName": "1234567", "createTime": "2021-11-04 15:33:46", "payType": null, "payTime": null, "payStatus": 0, "orderStatus": 1, "remark": null, "pageVo": null, "startTime": null, "endTime": null } ], "total": 1, "size": 10, "current": 1, "orders": [ { "column": "create_time", "asc": false } ], "hitCount": false, "searchCount": true, "pages": 1 } } ```