1.添加主播信息,员工主播信息英文国家名字段

This commit is contained in:
2025-10-13 17:55:49 +08:00
parent 35be251a00
commit 145034b908
9 changed files with 24 additions and 3 deletions

View File

@@ -133,4 +133,7 @@ public class EmployeeHostsPageReqVO extends PageParam {
@Schema(description = "旗帜")
private String flag;
@Schema(description = "国家英文名", example = "United States")
private String countryEng;
}

View File

@@ -79,4 +79,7 @@ public class EmployeeHostsRespVO {
@Schema(description = "旗帜")
private String flag;
@Schema(description = "国家英文名", example = "United States")
private String countryEng;
}

View File

@@ -53,4 +53,7 @@ public class EmployeeHostsSaveReqVO {
@Schema(description = "旗帜")
private String flag;
@Schema(description = "国家英文名", example = "United States")
private String countryEng;
}

View File

@@ -145,4 +145,7 @@ public class NewHostsPageReqVO extends PageParam {
@Schema(description = "旗帜")
private String flag;
@Schema(description = "国家英文名", example = "United States")
private String countryEng;
}

View File

@@ -90,4 +90,8 @@ public class NewHostsRespVO {
@Schema(description = "旗帜")
@ExcelProperty("旗帜")
private String flag;
@Schema(description = "国家英文名", example = "United States")
@ExcelProperty("国家英文名")
private String countryEng;
}

View File

@@ -85,4 +85,6 @@ public class EmployeeHostsDO extends BaseDO {
private Long tenantId;
private String flag;
private String countryEng;
}

View File

@@ -85,4 +85,6 @@ public class NewHostsDO extends TenantBaseDO {
* 是否建联
*/
private Byte operationStatus;
private String countryEng;
}