You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ForestBlog/src/java/entity/Notice.java

28 lines
509 B

package com.liuyanzhao.ssm.blog.entity;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
/**
* @author liuyanzhao
*/
@Data
public class Notice implements Serializable{
private static final long serialVersionUID = -4901560494243593100L;
private Integer noticeId;
private String noticeTitle;
private String noticeContent;
private Date noticeCreateTime;
private Date noticeUpdateTime;
private Integer noticeStatus;
private Integer noticeOrder;
}