feat(tkdata): 新增主播昵称字段支持

This commit is contained in:
2026-04-20 15:52:25 +08:00
parent cfc83facbc
commit 6713b83300
8 changed files with 25 additions and 1 deletions

View File

@@ -1,5 +1,6 @@
package cn.iocoder.yudao.module.tkdata.controller.admin.bigbrother.vo; package cn.iocoder.yudao.module.tkdata.controller.admin.bigbrother.vo;
import com.alibaba.excel.annotation.ExcelProperty;
import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableField;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.*; import lombok.*;
@@ -152,4 +153,6 @@ public class BigBrotherPageReqVO extends PageParam {
@Schema(description = "是否删除原数据") @Schema(description = "是否删除原数据")
private Boolean deleteFlag; private Boolean deleteFlag;
@Schema(description = "主播昵称", example = "nickname")
private String hostsNickname;
} }

View File

@@ -75,4 +75,8 @@ public class BigBrotherRespVO {
@Schema(description = "粉丝团等级", example = "0") @Schema(description = "粉丝团等级", example = "0")
@ExcelProperty("粉丝团等级") @ExcelProperty("粉丝团等级")
private Integer fansLevel; private Integer fansLevel;
@Schema(description = "主播昵称", example = "nickname")
@ExcelProperty("主播昵称")
private String hostsNickname;
} }

View File

@@ -1,5 +1,6 @@
package cn.iocoder.yudao.module.tkdata.controller.admin.bigbrother.vo; package cn.iocoder.yudao.module.tkdata.controller.admin.bigbrother.vo;
import com.alibaba.excel.annotation.ExcelProperty;
import io.swagger.v3.oas.annotations.media.Schema; import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*; import lombok.*;
import java.util.*; import java.util.*;
@@ -58,5 +59,6 @@ public class BigBrotherSaveReqVO {
@Schema(description = "粉丝团等级", example = "0") @Schema(description = "粉丝团等级", example = "0")
private Integer fansLevel; private Integer fansLevel;
@Schema(description = "主播昵称", example = "nickname")
private String hostsNickname;
} }

View File

@@ -150,4 +150,7 @@ public class EmployeeBigBrotherPageReqVO extends PageParam {
@Schema(description = "是否删除", example = "0") @Schema(description = "是否删除", example = "0")
private Integer isDelete; private Integer isDelete;
@Schema(description = "主播昵称", example = "nickname")
private String hostsNickname;
} }

View File

@@ -75,4 +75,7 @@ public class EmployeeBigBrotherRespVO {
@Schema(description = "粉丝团等级", example = "0") @Schema(description = "粉丝团等级", example = "0")
@ExcelProperty("粉丝团等级") @ExcelProperty("粉丝团等级")
private Integer fansLevel; private Integer fansLevel;
@Schema(description = "主播昵称", example = "nickname")
private String hostsNickname;
} }

View File

@@ -51,4 +51,7 @@ public class EmployeeBigBrotherSaveReqVO {
@Schema(description = "粉丝团等级", example = "0") @Schema(description = "粉丝团等级", example = "0")
private Integer fansLevel; private Integer fansLevel;
@Schema(description = "主播昵称", example = "nickname")
private String hostsNickname;
} }

View File

@@ -1,5 +1,7 @@
package cn.iocoder.yudao.module.tkdata.dal.dataobject.bigbrother; package cn.iocoder.yudao.module.tkdata.dal.dataobject.bigbrother;
import com.alibaba.excel.annotation.ExcelProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*; import lombok.*;
import java.util.*; import java.util.*;
import java.time.LocalDateTime; import java.time.LocalDateTime;
@@ -84,4 +86,6 @@ public class BigBrotherDO extends BaseDO {
private Integer isAssigned; private Integer isAssigned;
private Integer fansLevel; private Integer fansLevel;
private String hostsNickname;
} }

View File

@@ -83,4 +83,6 @@ public class EmployeeBigBrotherDO extends BaseDO {
private Long tenantId; private Long tenantId;
private Integer fansLevel; private Integer fansLevel;
private String hostsNickname;
} }