mirror of
https://github.com/continew-org/continew-admin.git
synced 2025-09-10 19:00:53 +08:00
fix: 修复未设置填充顺序导致的偶发性用户查询报错
This commit is contained in:
@@ -47,7 +47,7 @@ import java.util.Objects;
|
||||
@Data
|
||||
@ExcelIgnoreUnannotated
|
||||
@Schema(description = "用户详情信息")
|
||||
@Assemble(key = "id", prop = ":roleIds", container = ContainerConstants.USER_ROLE_ID_LIST)
|
||||
@Assemble(key = "id", prop = ":roleIds", sort = 0, container = ContainerConstants.USER_ROLE_ID_LIST)
|
||||
public class UserDetailResp extends BaseDetailResp {
|
||||
|
||||
@Serial
|
||||
|
@@ -44,7 +44,7 @@ import java.util.Objects;
|
||||
*/
|
||||
@Data
|
||||
@Schema(description = "用户信息")
|
||||
@Assemble(key = "id", prop = ":roleIds", container = ContainerConstants.USER_ROLE_ID_LIST)
|
||||
@Assemble(key = "id", prop = ":roleIds", sort = 0, container = ContainerConstants.USER_ROLE_ID_LIST)
|
||||
public class UserResp extends BaseDetailResp {
|
||||
|
||||
@Serial
|
||||
|
Reference in New Issue
Block a user