添加获取登录验证码接口

This commit is contained in:
xianyi
2025-12-16 11:07:22 +08:00
parent 7e8d3b1a19
commit a9e93d4737
2 changed files with 38 additions and 0 deletions

View File

@@ -530,3 +530,26 @@ export interface OutputOperatorRemarkInfoAdd {
*/
export type OperatorRemarkInfoAddResponse = CommonActionResult<OutputOperatorRemarkInfoAdd>;
/**
* 获取登录验证码(图片)入参
*/
export interface InputVerificationCodeImage {
/** 应用ID */
app_id: string;
}
/**
* 获取登录验证码(图片)出参
*/
export interface OutputVerificationCodeImage {
/** 验证码标识键 */
verification_code_key: string;
/** 验证码图片Base64 或图片地址) */
verification_code_image: string;
}
/**
* 获取登录验证码(图片)响应
*/
export type VerificationCodeImageResponse = CommonActionResult<OutputVerificationCodeImage>;