package com.ruoyi.project.tr.JpushMsg.domain; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; import com.ruoyi.framework.aspectj.lang.annotation.Excel; import com.ruoyi.framework.web.domain.BaseEntity; /** * 极光推送消息对象 tr_jpush_msg * * @author wm * @date 2020-09-10 */ public class JpushMsg extends BaseEntity { private static final long serialVersionUID = 1L; /** 极光推送消息表ID */ private Integer jpushMsgId; /** 标题 */ @Excel(name = "标题") private String title; /** 内容 */ @Excel(name = "内容") private String content; /** 类型 */ @Excel(name = "类型") private String methodType; /** 别名(用户user_id) */ @Excel(name = "别名", readConverterExp = "用=户user_id") private String userId; /** 状态(0正常 1删除) */ @Excel(name = "状态", readConverterExp = "0=正常,1=删除") private String status; public void setJpushMsgId(Integer jpushMsgId) { this.jpushMsgId = jpushMsgId; } public Integer getJpushMsgId() { return jpushMsgId; } public void setTitle(String title) { this.title = title; } public String getTitle() { return title; } public void setContent(String content) { this.content = content; } public String getContent() { return content; } public void setMethodType(String methodType) { this.methodType = methodType; } public String getMethodType() { return methodType; } public void setUserId(String userId) { this.userId = userId; } public String getUserId() { return userId; } public void setStatus(String status) { this.status = status; } public String getStatus() { return status; } @Override public String toString() { return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) .append("jpushMsgId", getJpushMsgId()) .append("title", getTitle()) .append("content", getContent()) .append("methodType", getMethodType()) .append("userId", getUserId()) .append("status", getStatus()) .append("createBy", getCreateBy()) .append("createTime", getCreateTime()) .append("updateBy", getUpdateBy()) .append("updateTime", getUpdateTime()) .append("remark", getRemark()) .toString(); } }