Skip to content

查询客勤关系 API

PathMethodCreated At
/api/business/opportunities/customers/relationships/paginatePOST2025-11-29 00:39:11

Request

KeyRuleDescription
pageinteger,min:1,max:100页码必须为正整数
page_sizeinteger,min:5,max:1000每页数量必须为正整数
business_opportunity_idstring,size:24trans:validate.BO_NOT_FOUND

Response

KeyTypeExampleComment
idstringUUIDID
businessOpportunityIdstring675143商机ID
customerIdint1客户ID
customerEmployeeIdint3客户员工ID
customerEmployeeNamestring张三客户员工姓名
relationshipstring紧密合作关系
attitudestring客户态度
createdByint4创建人ID
createdByNamestring张三创建人姓名

TypeScript Result Example:

TypeScript
interface Result {
  /** ID */
  id: string;
  /** 商机ID */
  businessOpportunityId: string;
  /** 客户ID */
  customerId: number;
  /** 客户员工ID */
  customerEmployeeId: number;
  /** 客户员工姓名 */
  customerEmployeeName: string;
  /** 合作关系 */
  relationship: string;
  /** 客户态度 */
  attitude: string;
  /** 创建人ID */
  createdBy: number;
  /** 创建人姓名 */
  createdByName: string;
}