parent
2304ea3028
commit
35e6b393d7
@ -0,0 +1,17 @@
|
|||||||
|
package com.yami.shop.security.admin.dto;
|
||||||
|
|
||||||
|
import com.yami.shop.security.common.dto.AuthenticationDTO;
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 验证码登录
|
||||||
|
* @author 菠萝凤梨
|
||||||
|
* @date 2022/3/28 14:57
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
public class CaptchaAuthenticationDTO extends AuthenticationDTO {
|
||||||
|
|
||||||
|
@Schema(description = "验证码" , required = true)
|
||||||
|
private String captchaVerification;
|
||||||
|
}
|
Loading…
Reference in new issue