| 1234567891011121314151617181920212223242526272829303132333435 |
- package com.cyksj.model.entity;
- import com.cyksj.model.dto.MsgEvent;
- import lombok.Getter;
- import lombok.Setter;
- /*
- *项目名: netflix
- *文件名: UserGzhRelation
- *创建者: JavaZou
- *创建时间:2023/1/16 10:56
- */
- @Getter
- @Setter
- public class UserGzhRelation extends BaseEntity{
- private Long wxAppId;
- private Long userId;
- private String openId;
- private String unionid;
- private MsgEvent.Event event;
- /**
- * 是否关注
- */
- private Boolean isSubscribe;
- /**
- * 是否是扫描二维码
- */
- private Boolean isQrScene;
- }
|