文档
测试

存储账户->列表查询

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

接口描述

存储账户->获取当前用户所属机构集合

请求头

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

请求参数

application/json
必填
参数名
类型
描述
必填
pageVo
object
分页参数
必填
pageNumber
int
示例:1
必填
pageSize
int
示例:10
必填
sort
string
示例:createTime
必填
order
string
示例:asc
必填
departmentId
string
机构id,示例:1381809181400633344

请求示例

``` { "pageVo": {"pageNumber": 1, "pageSize": 10, "sort": "createTime", "order": "asc"}, "departmentId":"1381809181400633344" } ```

响应参数

必填
参数名
类型
描述
必填
success
boolean
示例:true
必填
message
string
示例:success
必填
code
int
示例:200
必填
timestamp
int
示例:1637833920915
必填
result
object
数据字典
必填
records
array
数据列表
必填
id
string
示例:513397550036865026
必填
departmentId
string
充值账户id,示例:1381809181400633344
必填
departmentName
string
充值账户名称,示例:思软集团
必填
businessType
int
业务类型,示例:2 (1, "普通订单" 2, "充值订单")
必填
businessOrderNo
string
业务单号,示例:CZ20211112141248000004
必填
orderNo
string
资金流水号,示例:33
必填
openingBalance
int
期初余额(元),示例:0
必填
money
int
支出(-负数)/收入(+正数) 金额(元) ,示例:222
必填
balance
int
期末余额(元),示例:222
必填
creator
string
示例:1450276393442217984
必填
creatorName
string
示例:12345
必填
createTime
string
示例:2021-11-17 16:58:34
必填
remark
object
示例:null
必填
pageVo
object
示例:null
必填
total
int
示例:2

响应示例

``` { "success": true, "message": "success", "code": 200, "timestamp": 1637833920915, "result": { "records": [ { "id": "513397550036865026", "departmentId": "1381809181400633344", "departmentName": "思软集团", "businessType": 2, "businessOrderNo": "CZ20211112141248000004", "orderNo": "33", "openingBalance": 0.00, "money": 222, "balance": 222.00, "creator": "1450276393442217984", "creatorName": "12345", "createTime": "2021-11-17 16:58:34", "remark": null, "pageVo": null }, { "id": "513398388549537793", "departmentId": "1381809181400633344", "departmentName": "思软集团", "businessType": 2, "businessOrderNo": "CZ20211117140341000007", "orderNo": "222", "openingBalance": 222.00, "money": 22, "balance": 244.00, "creator": "682265633886208", "creatorName": "admin", "createTime": "2021-11-17 17:01:54", "remark": null, "pageVo": null } ], "total": 2, "size": 10, "current": 1, "orders": [ { "column": "create_time", "asc": true } ], "hitCount": false, "searchCount": true, "pages": 1 } } ```