主数据共享平台
  1. 核算组织模块
主数据共享平台
  • 首页
  • MQ分发同步消息
  • 组织
    • 部门模块
      • 查询所有的部门组织
  • 核算组织模块
    • 分页查询列表
      POST
  • 用户模块
    • 查询所有的用户
      POST
    • 用户信息
      GET
  • 商客管理
    • 新增或修改
      POST
    • 查询所有的商客
      POST
    • 根据id删除
      DELETE
  • 商客联系人模块
    • 新增或修改
      POST
    • 分页查询列表
      POST
    • 根据id删除
      DELETE
  • 商客银行账户模块管理
    • 查询所有的商客银行账户
      POST
    • 新增或修改
      POST
    • 根据id删除
      DELETE
  • 数据模型
    • Result
    • ResultListUserQueryVO
    • UserPageDTO
    • UserQueryVO
    • OrgPageDTO
    • CustomerPageDTO
    • CustomerUserPageDTO
    • OrgQueryVO
    • CustomerUserVO
    • CustomerUserDTO
    • ResultListOrgQueryVO
    • ResultListCustomerUserVO
    • CustomerDTO
    • CustomerBankPageDTO
    • ResultUserQueryVO
    • CustomerBankVO
    • ResultListCustomerBankVO
    • CustomerThirdVO
    • ResultListCustomerThirdVO
    • CustomerBankDTO
    • AccountingOrgPageDTO
    • AccountingOrg
    • ResultListAccountingOrg
  1. 核算组织模块

分页查询列表

POST
/accounting/org/page
条件查询分页列表

请求参数

Body 参数application/json必填

示例
{
    "page": 1,
    "size": 10,
    "orderBy": "t.id asc , s.create_time desc",
    "beginDateTime": "2019-08-24T14:15:22.123Z"
}

请求示例代码

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://main-data-api.pengbocloud.com/accounting/org/page' \
--header 'Content-Type: application/json' \
--data-raw '{
    "page": 1,
    "size": 10,
    "orderBy": "t.id asc , s.create_time desc",
    "beginDateTime": "2019-08-24T14:15:22.123Z"
}'

返回响应

🟢200成功
*/*
OK
Body

示例
{
    "code": 200,
    "data": [
        {
            "id": 0,
            "code": "string",
            "parentCode": "string",
            "taxId": "string",
            "name": "string",
            "fullName": "string",
            "type": 0,
            "orgType": 0,
            "namePath": "string",
            "codePath": "string",
            "sort": 0,
            "tags": "string",
            "remark": "string",
            "isEnabled": 0,
            "isDeleted": 0,
            "modifyBy": 0,
            "modifyTime": "2019-08-24T14:15:22.123Z",
            "createBy": 0,
            "createTime": "2019-08-24T14:15:22.123Z"
        }
    ],
    "msg": "success"
}
修改于 2026-01-13 08:34:02
上一页
查询所有的部门组织
下一页
查询所有的用户
Built with