1. 修改代码生成器普通表格为虚拟滚动

This commit is contained in:
chenbowen
2025-08-27 09:42:53 +08:00
parent 6081fb21ee
commit da3487a54d
25 changed files with 1795 additions and 167 deletions

View File

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

View File

@@ -0,0 +1,15 @@
package cn.iocoder.yudao.framework.common.pojo.vo;
import jakarta.validation.constraints.NotEmpty;
import lombok.Data;
import java.util.List;
/**
* @author chenbowen
*/
@Data
public class BatchDeleteReqVO {
@NotEmpty(message = "批量删除 ids 不能为空")
private List<Long> ids;
}