123456789101112131415161718192021222324252627282930 |
- package com.ruoyi.zhdd.domain.bo;
- import com.ruoyi.common.core.domain.entity.SysDept;
- import lombok.Data;
- /**
- * @Description: TODO
- * @Author: huangcheng
- * @Date: 2022/1/12
- * @Version V1.0
- */
- @Data
- public class MessagePushUser {
- private String userId;
- private String readState = "0";
- private String nickName;
- private String deptId;
- private String deptName;
- private String userName;
- private SysDept dept;
- private String receiverId;
- private String status = getReadState();
- public void setUserId(String userId) {
- this.userId = userId;
- this.receiverId = userId;
- }
- }
|