1.大哥添加粉丝团字段

This commit is contained in:
2025-09-23 15:56:50 +08:00
parent 40ae31786d
commit 8b5b7719f1
3 changed files with 9 additions and 1 deletions

View File

@@ -165,4 +165,8 @@ public class ServerBigBrotherDTO extends PageRequest implements Serializable {
@TableField(value = "hostcoins")
@ApiModelProperty(value="大哥打赏的金币")
private Integer hostcoins;
@TableField(value = "fans_level")
@ApiModelProperty(value = "大哥粉丝团等级")
private Integer fansLevel;
}

View File

@@ -109,4 +109,7 @@ public class ServerBigBrotherVO {
@ApiModelProperty(value="创建时间")
private LocalDateTime createTime;
@TableField(value = "fans_level")
@ApiModelProperty(value = "大哥粉丝团等级")
private Integer fansLevel;
}