Skip to content

获取负责人选项 API

PathMethodCreated At
/api/customers/manager/optionsGET2025-11-29 00:39:11

Request

KeyRuleDescription
conditionsarray查询条件不正确

Response

KeyTypeExampleComment
idint1选项值
namestringA选项名称

TypeScript Result Example:

TypeScript
interface Result {
  /** 选项值 */
  id: number;
  /** 选项名称 */
  name: string;
}