Appearance
获取商机列表查询数量 API
| Path | Method | Created At |
|---|---|---|
| /api/business/opportunities/count | POST | 2025-11-29 00:39:11 |
Request
| Key | Rule | Description |
|---|---|---|
| page | integer,min:1,max:100 | 页码不正确 |
| page_size | integer,min:5,max:1000 | 每页数量不正确 |
| conditions | array | 查询条件不正确 |
Response
| Key | Type | Example | Comment |
|---|---|---|---|
| count | int | 10 | 数量 |
TypeScript Result Example:
TypeScript
interface Result {
/** 数量 */
count: number;
}