添加获取登录验证码接口
This commit is contained in:
@@ -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>;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user