
com.holly.unit.message.api.pojo.response.MessageResponse Maven / Gradle / Ivy
package com.holly.unit.message.api.pojo.response;
import com.holly.unit.message.api.enums.MessageBusinessTypeEnum;
import com.holly.unit.message.api.enums.MessagePriorityLevelEnum;
import com.holly.unit.message.api.enums.MessageReadFlagEnum;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
import java.util.Optional;
import java.util.concurrent.atomic.AtomicReference;
/**
* 系统消息的查询参数
*
* @author holly
* @date 2021/1/2 21:23
*/
@Data
public class MessageResponse implements Serializable {
/**
* 消息id
*/
private Long messageId;
/**
* 接收用户id
*/
private Long receiveUserId;
/**
* 发送用户id
*/
private Long sendUserId;
/**
* 消息标题
*/
private String messageTitle;
/**
* 消息的内容
*/
private String messageContent;
/**
* 消息优先级
*/
private String priorityLevel;
/**
* 消息类型
*/
private String messageType;
/**
* 消息发送时间
*/
private Date messageSendTime;
/**
* 业务id
*/
private Long businessId;
/**
* 业务类型
*/
private String businessType;
/**
* 阅读状态:0-未读,1-已读
*/
private Integer readFlag;
/**
* 消息优先级
*/
private String priorityLevelValue;
/**
* 阅读状态:0-未读,1-已读
*/
private String readFlagValue;
public String getPriorityLevelValue(){
AtomicReference value = new AtomicReference<>("");
Optional.ofNullable(this.priorityLevel).ifPresent(val ->{
value.set(MessagePriorityLevelEnum.getName(this.priorityLevel));
});
return value.get();
}
public String getReadFlagValue(){
AtomicReference value = new AtomicReference<>("");
Optional.ofNullable(this.readFlag).ifPresent(val ->{
value.set(MessageReadFlagEnum.getName(this.readFlag));
});
return value.get();
}
public String getBusinessTypeValue(){
AtomicReference value = new AtomicReference<>("");
Optional.ofNullable(this.businessType).ifPresent(val ->{
value.set(MessageBusinessTypeEnum.getName(this.businessType));
});
return value.get();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy