fix bug
This commit is contained in:
@ -0,0 +1,41 @@
|
|||||||
|
package co.yixiang.yshop.module.member.api.user.dto;
|
||||||
|
|
||||||
|
import lombok.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @ClassName WechatUserDTO
|
||||||
|
* @Author hupeng <610796224@qq.com>
|
||||||
|
* @Date 2023/7/18
|
||||||
|
**/
|
||||||
|
@Getter
|
||||||
|
@Setter
|
||||||
|
@Builder
|
||||||
|
@AllArgsConstructor
|
||||||
|
@NoArgsConstructor
|
||||||
|
public class WechatUserDTO {
|
||||||
|
|
||||||
|
private String openId;
|
||||||
|
|
||||||
|
private String unionId;
|
||||||
|
|
||||||
|
private String routineOpenId;
|
||||||
|
|
||||||
|
private String nickname;
|
||||||
|
|
||||||
|
private String headimgurl;
|
||||||
|
|
||||||
|
private Integer sex;
|
||||||
|
|
||||||
|
private String city;
|
||||||
|
|
||||||
|
private String language;
|
||||||
|
|
||||||
|
private String province;
|
||||||
|
|
||||||
|
private String country;
|
||||||
|
|
||||||
|
private Boolean subscribe;
|
||||||
|
|
||||||
|
private Long subscribeTime;
|
||||||
|
|
||||||
|
}
|
Reference in New Issue
Block a user