1.大哥添加粉丝团等级

This commit is contained in:
2025-09-23 16:21:47 +08:00
parent 20a5e249aa
commit 35be251a00
10 changed files with 70 additions and 3 deletions

View File

@@ -139,4 +139,13 @@ public class BigBrotherPageReqVO extends PageParam {
@Schema(description = "国家名称")
private String countryName;
@Schema(description = "粉丝团等级", example = "0")
private Integer fansLevel;
@Schema(description = "粉丝团等级最大值", example = "0")
private Integer fansLevelMax;
@Schema(description = "粉丝团等级最小值", example = "0")
private Integer fansLevelMin;
}

View File

@@ -71,4 +71,8 @@ public class BigBrotherRespVO {
@Schema(description = "是否分配")
@ExcelProperty("是否分配")
private Byte isAssigned;
@Schema(description = "粉丝团等级", example = "0")
@ExcelProperty("粉丝团等级")
private Integer fansLevel;
}

View File

@@ -55,4 +55,8 @@ public class BigBrotherSaveReqVO {
@Schema(description = "是否分配", example = "0")
private Byte isAssigned;
@Schema(description = "粉丝团等级", example = "0")
private Integer fansLevel;
}

View File

@@ -138,4 +138,13 @@ public class EmployeeBigBrotherPageReqVO extends PageParam {
@Schema(description = "国家名称")
private String countryName;
@Schema(description = "粉丝团等级", example = "0")
private Integer fansLevel;
@Schema(description = "粉丝团等级最大值", example = "0")
private Integer fansLevelMax;
@Schema(description = "粉丝团等级最小值", example = "0")
private Integer fansLevelMin;
}

View File

@@ -72,4 +72,7 @@ public class EmployeeBigBrotherRespVO {
@ExcelProperty("是否洽谈")
private Integer operationStatus;
@Schema(description = "粉丝团等级", example = "0")
@ExcelProperty("粉丝团等级")
private Integer fansLevel;
}

View File

@@ -49,4 +49,6 @@ public class EmployeeBigBrotherSaveReqVO {
@Schema(description = "是否洽谈", example = "2")
private Integer operationStatus;
@Schema(description = "粉丝团等级", example = "0")
private Integer fansLevel;
}

View File

@@ -82,4 +82,6 @@ public class BigBrotherDO extends BaseDO {
private Long tenantId;
private Integer isAssigned;
private Integer fansLevel;
}

View File

@@ -82,4 +82,5 @@ public class EmployeeBigBrotherDO extends BaseDO {
private Long tenantId;
private Integer fansLevel;
}