This commit is contained in:
徐唯轩
2023-11-14 16:32:59 +08:00
parent 441dad9ef6
commit 751ed76e37
298 changed files with 10073 additions and 3527 deletions

View File

@ -1,41 +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;
}
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;
}