| | |
| | |
|
| | | import javax.validation.constraints.NotBlank;
|
| | | import javax.validation.constraints.Size;
|
| | |
|
| | | import com.baomidou.mybatisplus.annotation.FieldFill;
|
| | | import com.baomidou.mybatisplus.annotation.TableField;
|
| | | import com.fasterxml.jackson.annotation.JsonFormat;
|
| | | import lombok.Data;
|
| | | import org.apache.commons.lang3.builder.ToStringBuilder;
|
| | | import org.apache.commons.lang3.builder.ToStringStyle;
|
| | | import com.ruoyi.common.xss.Xss;
|
| | | import com.ruoyi.framework.web.domain.BaseEntity;
|
| | |
|
| | | import java.time.LocalDateTime;
|
| | |
|
| | | /**
|
| | | * 通知公告表 sys_notice
|
| | | * |
| | | *
|
| | | * @author ruoyi
|
| | | */
|
| | | public class SysNotice extends BaseEntity
|
| | | @Data
|
| | | public class SysNotice
|
| | | {
|
| | | private static final long serialVersionUID = 1L;
|
| | |
|
| | |
| | | /** 公告状态(0正常 1关闭) */
|
| | | private String status;
|
| | |
|
| | | public Long getNoticeId()
|
| | | {
|
| | | return noticeId;
|
| | | }
|
| | | /** 发送人id */
|
| | | private Long senderId;
|
| | |
|
| | | public void setNoticeId(Long noticeId)
|
| | | {
|
| | | this.noticeId = noticeId;
|
| | | }
|
| | | /** 收件人id */
|
| | | private Long consigneeId;
|
| | |
|
| | | public void setNoticeTitle(String noticeTitle)
|
| | | {
|
| | | this.noticeTitle = noticeTitle;
|
| | | }
|
| | | /** 跳转路径 */
|
| | | private String jumpPath;
|
| | |
|
| | | @NotBlank(message = "公告标题不能为空")
|
| | | @Size(min = 0, max = 50, message = "公告标题不能超过50个字符")
|
| | | public String getNoticeTitle()
|
| | | {
|
| | | return noticeTitle;
|
| | | }
|
| | | /** 创建者 */
|
| | | @TableField(fill = FieldFill.INSERT)
|
| | | private String createBy;
|
| | |
|
| | | public void setNoticeType(String noticeType)
|
| | | {
|
| | | this.noticeType = noticeType;
|
| | | }
|
| | | /** 创建时间 */
|
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
| | | @TableField(fill = FieldFill.INSERT)
|
| | | private LocalDateTime createTime;
|
| | |
|
| | | public String getNoticeType()
|
| | | {
|
| | | return noticeType;
|
| | | }
|
| | | /** 更新者 */
|
| | | @TableField(fill = FieldFill.INSERT_UPDATE)
|
| | | private String updateBy;
|
| | |
|
| | | public void setNoticeContent(String noticeContent)
|
| | | {
|
| | | this.noticeContent = noticeContent;
|
| | | }
|
| | | /** 更新时间 */
|
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
| | | @TableField(fill = FieldFill.INSERT_UPDATE)
|
| | | private LocalDateTime updateTime;
|
| | |
|
| | | public String getNoticeContent()
|
| | | {
|
| | | return noticeContent;
|
| | | }
|
| | | /** 备注 */
|
| | | private String remark;
|
| | |
|
| | | public void setStatus(String status)
|
| | | {
|
| | | this.status = status;
|
| | | }
|
| | | /**
|
| | | * 租户id
|
| | | */
|
| | | private Long tenantId;
|
| | |
|
| | | public String getStatus()
|
| | | {
|
| | | return status;
|
| | | }
|
| | |
|
| | | @Override
|
| | | public String toString() {
|
| | | return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
| | | .append("noticeId", getNoticeId())
|
| | | .append("noticeTitle", getNoticeTitle())
|
| | | .append("noticeType", getNoticeType())
|
| | | .append("noticeContent", getNoticeContent())
|
| | | .append("status", getStatus())
|
| | | .append("createBy", getCreateBy())
|
| | | .append("createTime", getCreateTime())
|
| | | .append("updateBy", getUpdateBy())
|
| | | .append("updateTime", getUpdateTime())
|
| | | .append("remark", getRemark())
|
| | | .toString();
|
| | | }
|
| | | }
|