Files
kami_frontend/src/api/generated/models/kami-api-camel-oil-v1-input-verification-code-req.ts
danial 86a19135a8 feat(token): 新增输入验证码和重新发送验证码接口
- 添加输入验证码接口及请求和响应模型
- 添加重新发送验证码接口及请求和响应模型
- 调整Token相关接口及模型中的字段名tokenName为name
- 更新Token列表接口查询参数tokenName为name,status类型调整为枚举
- 维护API文档,补充新增接口的详细说明和示例
- 更新相关类型定义,完善请求参数接口和响应接口
- 修正部分模型字段名以统一接口字段规范
2025-12-09 18:47:24 +08:00

25 lines
506 B
TypeScript

/* tslint:disable */
/**
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document:
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface KamiApiCamelOilV1InputVerificationCodeReq {
/**
* Token ID
*/
tokenId: number;
/**
* 验证码
*/
code: string;
}