MessagePushUser.java 631 B

123456789101112131415161718192021222324252627282930
  1. package com.ruoyi.zhdd.domain.bo;
  2. import com.ruoyi.common.core.domain.entity.SysDept;
  3. import lombok.Data;
  4. /**
  5. * @Description: TODO
  6. * @Author: huangcheng
  7. * @Date: 2022/1/12
  8. * @Version V1.0
  9. */
  10. @Data
  11. public class MessagePushUser {
  12. private String userId;
  13. private String readState = "0";
  14. private String nickName;
  15. private String deptId;
  16. private String deptName;
  17. private String userName;
  18. private SysDept dept;
  19. private String receiverId;
  20. private String status = getReadState();
  21. public void setUserId(String userId) {
  22. this.userId = userId;
  23. this.receiverId = userId;
  24. }
  25. }