2026-06-24 f4bd1f3c89d906131495a0aca5aaf82966378510
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package cn.iocoder.yudao.module.mp.controller.admin.user.vo;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
 
import java.time.LocalDateTime;
import java.util.List;
 
@Schema(description = "管理后台 - 公众号粉丝 Response VO")
@Data
public class MpUserRespVO  {
 
    @Schema(description = "编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
    private Long id;
 
    @Schema(description = "公众号粉丝标识", requiredMode = Schema.RequiredMode.REQUIRED, example = "o6_bmjrPTlm6_2sgVt7hMZOPfL2M")
    private String openid;
 
    @Schema(description = "微信生态唯一标识", requiredMode = Schema.RequiredMode.REQUIRED, example = "o6_bmjrPTlm6_2sgVt7hMZOPfL2M")
    private String unionId;
 
    @Schema(description = "关注状态 参见 CommonStatusEnum 枚举", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Integer subscribeStatus;
    @Schema(description = "关注时间", requiredMode = Schema.RequiredMode.REQUIRED)
    private LocalDateTime subscribeTime;
    @Schema(description = "取消关注时间")
    private LocalDateTime unsubscribeTime;
 
    @Schema(description = "昵称", example = "芋道")
    private String nickname;
    @Schema(description = "头像地址", example = "https://www.iocoder.cn/1.png")
    private String headImageUrl;
    @Schema(description = "语言", example = "zh_CN")
    private String language;
    @Schema(description = "国家", example = "中国")
    private String country;
    @Schema(description = "省份", example = "广东省")
    private String province;
    @Schema(description = "城市", example = "广州市")
    private String city;
    @Schema(description = "备注", example = "你是一个芋头嘛")
    private String remark;
 
    @Schema(description = "标签编号数组", example = "1,2,3")
    private List<Long> tagIds;
 
    @Schema(description = "公众号账号的编号", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
    private Long accountId;
    @Schema(description = "公众号账号的 appId", requiredMode = Schema.RequiredMode.REQUIRED, example = "wx1234567890")
    private String appId;
 
    @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED)
    private LocalDateTime createTime;
 
}