从"Blog"仓库中分离出来

This commit is contained in:
小海
2019-11-28 19:18:16 +08:00
commit 16cc30f513
119 changed files with 11291 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
package cn.celess.blog.entity;
import lombok.Data;
import java.util.Date;
/**
* @author : xiaohai
* @date : 2019/05/12 11:29
*/
@Data
public class WebUpdate {
private long id;
private String updateInfo;
private Date updateTime;
public WebUpdate() {
}
public WebUpdate(String updateInfo, Date updateTime) {
this.updateInfo = updateInfo;
this.updateTime = updateTime;
}
}