This commit is contained in:
moxiangrong
2024-02-23 09:57:45 +08:00
parent 3fd17e8fc9
commit 070ff57989

View File

@ -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;
}