xin
2025-06-04 98214a863d2c435fe6aa3870c21cb31db3cb3a99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.oying.modules.security.service.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Getter;
import lombok.Setter;
 
/**
 * @author xin
 * @description
 * @date 2025/6/4 19:32
 */
@Getter
@Setter
public class AuthUserWeixinDto {
 
    @ApiModelProperty(value = "用户名:type为NEW时传入用户openid")
    private String username;
 
    @ApiModelProperty(value = "微信code")
    private String code;
 
    @ApiModelProperty(value = "类型默认:OLD,注册:NEW",example = "OLD")
    private String type = "OLD";
}