UserGzhRelation.java 546 B

1234567891011121314151617181920212223242526272829303132333435
  1. package com.cyksj.model.entity;
  2. import com.cyksj.model.dto.MsgEvent;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. /*
  6. *项目名: netflix
  7. *文件名: UserGzhRelation
  8. *创建者: JavaZou
  9. *创建时间:2023/1/16 10:56
  10. */
  11. @Getter
  12. @Setter
  13. public class UserGzhRelation extends BaseEntity{
  14. private Long wxAppId;
  15. private Long userId;
  16. private String openId;
  17. private String unionid;
  18. private MsgEvent.Event event;
  19. /**
  20. * 是否关注
  21. */
  22. private Boolean isSubscribe;
  23. /**
  24. * 是否是扫描二维码
  25. */
  26. private Boolean isQrScene;
  27. }