1.修复添加员工导出主播功能

This commit is contained in:
2025-09-04 20:51:59 +08:00
parent ac29f38ae7
commit e3c820271d
3 changed files with 19 additions and 9 deletions

View File

@@ -29,7 +29,7 @@ public class PageParam implements Serializable {
@Schema(description = "每页条数,最大值为 1000", requiredMode = Schema.RequiredMode.REQUIRED, example = "10")
@NotNull(message = "每页条数不能为空")
@Min(value = 1, message = "每页条数最小值为 1")
// @Min(value = 1, message = "每页条数最小值为 1")
@Max(value = 1000, message = "每页条数最大值为 1000")
private Integer pageSize = PAGE_SIZE;