从"Blog"仓库中分离出来
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package cn.celess.blog.entity.model;
|
||||
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
/**
|
||||
* @author : xiaohai
|
||||
* @date : 2019/05/12 11:32
|
||||
*/
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
public class WebUpdateModel {
|
||||
private long id;
|
||||
|
||||
private String info;
|
||||
|
||||
private String time;
|
||||
|
||||
public WebUpdateModel(long id, String info, String time) {
|
||||
this.id = id;
|
||||
this.info = info;
|
||||
this.time = time;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user