|
|
@@ -9,6 +9,7 @@ import lombok.NoArgsConstructor;
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
+import java.util.List;
|
|
|
|
|
|
import static cn.start.tz.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
|
|
|
|
|
@@ -35,8 +36,8 @@ public class UserPageReqVO extends PageParam {
|
|
|
@Schema(description = "部门编号,同时筛选子部门", example = "1024")
|
|
|
private String deptId;
|
|
|
|
|
|
- @Schema(description = "角色编号", example = "1024")
|
|
|
- private String roleId;
|
|
|
+ @Schema(description = "角色编号(支持多选)", example = "[\"1024\", \"1025\"]")
|
|
|
+ private List<String> roleIds;
|
|
|
|
|
|
@Schema(description = "角色标识", example = "1024")
|
|
|
private String roleCode;
|