UserSysMsgNotify.java 455 B

123456789101112131415161718192021222324252627282930
  1. package com.cyksj.model.entity;
  2. import lombok.Getter;
  3. import lombok.Setter;
  4. /**
  5. * 项目名: yhlxj2
  6. * 文件名: UserSysMsgNotify
  7. * 创建者: JavaZou
  8. * 创建时间:2024/2/4 16:01
  9. */
  10. @Getter
  11. @Setter
  12. public class UserSysMsgNotify extends BaseEntity{
  13. private Long goodsId;
  14. private Long skuId;
  15. private Long userId;
  16. private Long relationId;
  17. private String account;
  18. private String msg;
  19. private Boolean isView;
  20. private Boolean deleted;
  21. }