♻️Refactor: 字段规范

This commit is contained in:
2025-10-18 17:32:11 +08:00
parent 7989236859
commit dd63e74094
2 changed files with 6 additions and 6 deletions
@@ -32,7 +32,7 @@ public class Blog {
/**
* 封面
*/
private String coverimg;
private String coverImg;
/**
* 内容
@@ -42,15 +42,15 @@ public class Blog {
/**
* 点赞数
*/
private Integer thumbcount;
private Integer thumbCount;
/**
* 创建时间
*/
private Date createtime;
private Date createTime;
/**
* 更新时间
*/
private Date updatetime;
private Date updateTime;
}
@@ -27,10 +27,10 @@ public class Thumb {
/**
* 博客 id
*/
private Long blogid;
private Long blogId;
/**
* 创建时间
*/
private Date createtime;
private Date createTime;
}