1.添加主播 UID字段,修复筛选用户

This commit is contained in:
2025-07-02 14:20:28 +08:00
parent ae65dbdd07
commit c8fcdc83b1
6 changed files with 64 additions and 54 deletions

View File

@@ -69,4 +69,7 @@ public class EmployeeHostsRespVO {
@Schema(description = "备注", example = "1")
private String remake;
@Schema(description = "uid", example = "1")
private String uid;
}

View File

@@ -68,4 +68,8 @@ public class NewHostsRespVO {
@ExcelProperty("用户 Id")
private Long userId;
@Schema(description = "uid", example = "10967")
@ExcelProperty("UId")
private String uid;
}

View File

@@ -78,4 +78,6 @@ public class EmployeeHostsDO extends BaseDO {
private Integer operationStatus;
private String remake;
private String uid;
}

View File

@@ -77,5 +77,5 @@ public class NewHostsDO extends TenantBaseDO {
*/
private Long userId;
private String uid;
}