
# 租户技能领域分页查询（API名称：getPagedSkillDomainList）
#### 功能介绍
租户技能领域分页查询。
#### 相关接口
| **接口名称**                                                             | **调用说明**                                                     |
|:---|:---|
| [获取Token](https://support.huaweicloud.com/api-isdp/api_01_0019.html) | 调用该接口获取到Token，再调用其他接口时，需要在请求消息头中添加"Authorization"，其值即为Token。 |
   
#### URL
| **请求方式** | **HTTPS地址**                                                          | **服务架构** | **消息体类型**        |
|:---|:---|:---|:---|
| POST     | https://***isdp+域名***/openapi/v1/skillDomain/getPagedSkillDomainList | OpenAPI  | application/json |
   
#### 请求头
| **KEY**       | **VALUE**              | **是否必填** | **描述**                                                                                           |
|:---|:---|:---|:---|
| Content-Type  | application/json       | 是        | 无                                                                                                |
| Authorization | bearer ${access_token} | 是        | bearer +" "+[5.2.1](https://support.huaweicloud.com/api-isdp/api_01_0019.html)中获取的access_token的值 |
   
#### 请求参数
| **参数**             | **类型**  | **是否必填** | **描述**                |
|:---|:---|:---|:---|
| page.start         | Integer | 否        | SQL分页查询起始位置，不传时起始位置为0 |
| page.count         | Integer | 否        | 当前页大小，不传时默认分页大小200    |
| po.skillDomainName | String  | 否        | 技能领域名                 |
   
#### 响应参数
| **参数**     | **类型**  | **描述**       |
|:---|:---|:---|
| pos        | Integer | 分页起始位置       |
| totalCount | Integer | 查询总数量        |
| data       | Object  | 响应结果json对象数组 |
   
data出参:
| **参数**          | **类型** | **描述** |
|:---|:---|:---|
| appName         | String | 应用名    |
| createBy        | Long   | 创建人id  |
| creationDate    | Date   | 创建时间   |
| entityName      | String | 实体名    |
| lastUpdateDate  | Date   | 更新时间   |
| lastUpdateBy    | Long   | 更新人Id  |
| skillDomainCode | String | 技能领域代号 |
| skillDomainId   | Long   | 技能领域Id |
| skillDomainName | String | 技能领域名称 |
| tenantId        | Long   | 租户Id   |
   
#### 请求示例
```
{
    "po.skillDomainName": "",
    "page.start": 0,
    "page.count": 5
}
```
#### 响应示例
```
{
    "data": [
        {
            "appName": "pub-server",
            "createdBy": -888888,
            "creationDate": "2021-06-09T02:00:53.000+00:00",
            "entityName": "skillDomain",
            "lastUpdateDate": "2021-06-09T02:00:53.000+00:00",
            "lastUpdatedBy": -888888,
            "skillDomainCode": "LY202106001",
            "skillDomainId": 9001,
            "skillDomainName": "安全",
            "tenantId": 1
        },
        {
            "appName": "pub-server",
            "createdBy": -1,
            "creationDate": "2021-08-19T03:45:37.000+00:00",
            "entityName": "skillDomain",
            "lastUpdateDate": "2023-04-10T09:27:21.000+00:00",
            "lastUpdatedBy": -1,
            "skillDomainCode": "LY00015631",
            "skillDomainId": 15631,
            "skillDomainName": "8sd",
            "tenantId": 1
        },
        {
            "appName": "pub-server",
            "createdBy": -1,
            "creationDate": "2021-08-19T08:55:18.000+00:00",
            "entityName": "skillDomain",
            "lastUpdateDate": "2021-08-19T08:55:18.000+00:00",
            "lastUpdatedBy": -1,
            "skillDomainCode": "LY00015660",
            "skillDomainId": 15660,
            "skillDomainName": "3",
            "tenantId": 1
        },
        {
            "appName": "pub-server",
            "createdBy": -1,
            "creationDate": "2021-08-19T08:56:46.000+00:00",
            "entityName": "skillDomain",
            "lastUpdateDate": "2021-08-19T08:56:46.000+00:00",
            "lastUpdatedBy": -1,
            "skillDomainCode": "LY00015661",
            "skillDomainId": 15661,
            "skillDomainName": "100",
            "tenantId": 1
        },
        {
            "appName": "pub-server",
            "createdBy": -1,
            "creationDate": "2022-05-30T08:58:49.000+00:00",
            "entityName": "skillDomain",
            "lastUpdateDate": "2022-05-30T08:58:49.000+00:00",
            "lastUpdatedBy": -1,
            "skillDomainCode": "LY00027740",
            "skillDomainId": 27740,
            "skillDomainName": "fdsa",
            "tenantId": 1
        }
    ],
    "pos": 0,
    "totalCount": 11,
    "entityName": "skillDomain"
}
```
