Skip to content

获取员工选项 API

PathMethodCreated At
/api/customers/departments/{customerId}/employees/optionsGET2025-11-29 00:39:11

Request

KeyRuleDescription
customerIdstring,size:24trans:validate.CUSTOMER_NOT_FOUND

Response

KeyTypeExampleComment
idint1选项值
namestringA选项名称

TypeScript Result Example:

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