Appearance
查询项目组成员 API
| Path | Method | Created At |
|---|---|---|
| /api/projects/members/{projectId}/paginate | GET | 2025-11-29 00:39:11 |
Request
| Key | Rule | Description |
|---|---|---|
| page | integer,min:1,max:100 | 页码必须为正整数 |
| page_size | integer,min:5,max:1000 | 每页数量必须为正整数 |
Response
| Key | Type | Example | Comment |
|---|---|---|---|
| id | string | 1d8da2 | ID |
| userId | int | 1 | 成员ID |
| username | string | 三藏 | 成员姓名 |
| responsibility | string | 负责人 | 成员职责 |
| createdAt | string | 2021-08-01 12:00:00 | 创建时间 |
TypeScript Result Example:
TypeScript
interface Result {
/** ID */
id: string;
/** 成员ID */
userId: number;
/** 成员姓名 */
username: string;
/** 成员职责 */
responsibility: string;
/** 创建时间 */
createdAt: string;
}