- j2
- 消息服务
- 通知提醒
- 消息中间件
- 系统管理
- j3
- c1
- 基础配置
- 人员配置
- c2
- c3
- 储位管理
- 库内管理
- c4
- c5
- c7
- c8
- c6
- J5
- j4
- j8
- j1
- j7
获取费用名称列表(条件+分页)
GET
/billing-configuration/query-by-page
最后修改时间:2025-03-12 13:24:25
责任人:未设置
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Query 参数
pageIndex
integer
查询页码
示例值:
1
pageSize
integer
查询条数
示例值:
10
id
string
费用代码
cost_code
string
费用代码
cost_name
string
名字
cost_type_code
string
费用类型
create_name
string
创建人名称
create_by
string
创建人登录名称
create_date
string
创建日期
update_name
string
更新人名称
update_by
string
更新人登录名称
update_date
string
更新日期
sys_org_code
string
所属部门
sys_company_code
string
所属公司
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET '/billing-configuration/query-by-page?pageIndex=1&pageSize=10'
返回响应
🟢200成功
application/json
Body
code
integer
状态码
>= -2147483648<= 2147483647
默认值:
10000
message
string
提示信息
默认值:
success
data
object (CostListPageDTO)
数据对象
pageIndex
integer
当前页码
默认值:
1
pageSize
integer
每页数据条数
默认值:
5
total
integer <int64>
数据的总条数
默认值:
0
pages
integer <int64>
数据的总页数
默认值:
0
rows
array[object (CostListDTO) {8}]
当前页数据列表
示例
{
"code": 10000,
"message": "success",
"data": {
"pageIndex": 1,
"pageSize": 5,
"total": 0,
"pages": 0,
"rows": []
}
}