Skip to content

获取项目阶段选项 API

PathMethodCreated At
/api/projects/stages/optionsGET2025-11-29 00:39:11

Request

KeyRuleDescription

Response

KeyTypeExampleComment
idint1选项值
namestringA选项名称

TypeScript Result Example:

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