Skip to content

获取详情 API

PathMethodCreated At
/api/customers/suppliers/GET2025-11-29 00:39:11

Request

KeyRuleDescription
idstring,size:24厂商不存在

Response

KeyTypeExampleComment
idstring67735e厂商编号
namestring浙江广铁渠道名称
agentLevelstring金牌代理代理等级
serviceLevelstring优秀服务等级
partnerRelationshipstringtarget合作关系
employeesobject_array员工列表
-> idstringe8d2a编号
-> namestring张三姓名
-> positionstring主管职务
-> industrystring交通负责行业或区域
-> phonestring13930733521联系方式
-> emailstringusername@domain.com邮箱
-> relationshipstring冷漠客情关系
-> remarkstring备注
-> updatedBystring马骝更新人
-> updatedAtstring2024-12-31 14:46:00更新时间
recommendationIndexstring1推荐指数
createdByNamestring张三创建人姓名
createdAtstring2024-01-02 03:05:06创建时间

TypeScript Result Example:

TypeScript
interface Employees {
  /** 编号 */
  id: string;
  /** 姓名 */
  name: string;
  /** 职务 */
  position: string;
  /** 负责行业或区域 */
  industry: string;
  /** 联系方式 */
  phone: string;
  /** 邮箱 */
  email: string;
  /** 客情关系 */
  relationship: string;
  /** 备注 */
  remark: string;
  /** 更新人 */
  updatedBy: string;
  /** 更新时间 */
  updatedAt: string;
}

interface Result {
  /** 厂商编号 */
  id: string;
  /** 渠道名称 */
  name: string;
  /** 代理等级 */
  agentLevel: string;
  /** 服务等级 */
  serviceLevel: string;
  /** 合作关系 */
  partnerRelationship: string;
  /** 员工列表 */
  employees: Employees[];
  /** 推荐指数 */
  recommendationIndex: string;
  /** 创建人姓名 */
  createdByName: string;
  /** 创建时间 */
  createdAt: string;
}