dao层修改 单元测试

This commit is contained in:
禾几海
2020-05-24 23:54:13 +08:00
parent 4f63f7b3d5
commit 0adf936085
4 changed files with 111 additions and 22 deletions

View File

@@ -17,11 +17,12 @@ public class WebUpdate {
private Date updateTime;
private boolean delete;
public WebUpdate() {
}
public WebUpdate(String updateInfo, Date updateTime) {
public WebUpdate(String updateInfo) {
this.updateInfo = updateInfo;
this.updateTime = updateTime;
}
}