Appearance
获取申请领取公海客户列表 API
| Path | Method | Created At |
|---|---|---|
| /api/customers/lead/pool/applies/paginate | POST | 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 | 1d21a | 申请编号 |
| customerId | string | 2abd3 | 客户ID |
| customerName | string | 金职院 | 客户名称 |
| userId | int | 3 | 申请人ID |
| name | string | 张三 | 申请人姓名 |
| applyStatus | enum | LeadPoolApplyStatus | 审批状态 |
| createdAt | string | 2021-08-01 12:00:00 | 申请时间 |
TypeScript Result Example:
TypeScript
interface Result {
/** 申请编号 */
id: string;
/** 客户ID */
customerId: string;
/** 客户名称 */
customerName: string;
/** 申请人ID */
userId: number;
/** 申请人姓名 */
name: string;
/** 审批状态 */
applyStatus: ResultApplyStatus;
/** 申请时间 */
createdAt: string;
}
enum ResultApplyStatus {
/** 待审批 */
PENDING = "PENDING",
/** 已通过 */
APPROVED = "APPROVED",
/** 已拒绝 */
REJECTED = "REJECTED",
/** 已取消 */
CANCEL = "CANCEL",
/** 未申请 */
UNAPPLY = "UNAPPLY"
}Enums
LeadPoolApplyStatus
| Const | Description |
|---|---|
| PENDING | 待审批 |
| APPROVED | 已通过 |
| REJECTED | 已拒绝 |
| CANCEL | 已取消 |
| UNAPPLY | 未申请 |