完善>>編輯目录菜单,自动修改对应的上下级目录,书签数量统计

This commit is contained in:
WangHao
2020-08-30 22:15:56 +08:00
parent d62720f5a7
commit 0696de196b
5 changed files with 63 additions and 11 deletions

View File

@ -55,7 +55,7 @@ public class SqMenu
/** 下级书签数量 */
@Column(name = "bookmark_count")
private Date bookmarkCount;
private Integer bookmarkCount;
/** 创建时间 */
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@ -68,11 +68,11 @@ public class SqMenu
private Date updateTime;
public Date getBookmarkCount() {
public Integer getBookmarkCount() {
return bookmarkCount;
}
public void setBookmarkCount(Date bookmarkCount) {
public void setBookmarkCount(Integer bookmarkCount) {
this.bookmarkCount = bookmarkCount;
}