Skip to content

获取申请领取公海客户列表 API

PathMethodCreated At
/api/customers/lead/pool/applies/paginatePOST2025-11-29 00:39:11

Request

KeyRuleDescription
pageinteger,min:1,max:100页码不正确
page_sizeinteger,min:5,max:1000每页数量不正确

Response

KeyTypeExampleComment
idstring1d21a申请编号
customerIdstring2abd3客户ID
customerNamestring金职院客户名称
userIdint3申请人ID
namestring张三申请人姓名
applyStatusenumLeadPoolApplyStatus审批状态
createdAtstring2021-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

ConstDescription
PENDING待审批
APPROVED已通过
REJECTED已拒绝
CANCEL已取消
UNAPPLY未申请