chore: continew-starter 2.8.2 => 2.8.3

1.移除 BaseReq、BaseDO、BaseCreateDO、BaseUpdateDO 等(已移动到 Admin 项目内)
2.移除 BaseReq
3.修复查询条件校验无效的问题
4.调整版本为 3.5.0-SNAPSHOT,方便区分稳定版和快照版
This commit is contained in:
2025-01-16 21:53:08 +08:00
parent aab3931f30
commit cefbf82f20
26 changed files with 76 additions and 80 deletions

View File

@@ -28,7 +28,6 @@ import top.continew.starter.extension.crud.annotation.CrudApi;
import top.continew.starter.extension.crud.annotation.CrudRequestMapping;
import top.continew.starter.extension.crud.controller.AbstractBaseController;
import top.continew.starter.extension.crud.enums.Api;
import top.continew.starter.extension.crud.model.req.BaseReq;
import top.continew.starter.extension.crud.service.BaseService;
import java.lang.reflect.Method;
@@ -45,7 +44,7 @@ import java.util.List;
* @author Charles7c
* @since 2024/12/6 20:30
*/
public class BaseController<S extends BaseService<L, D, Q, C>, L, D, Q, C extends BaseReq> extends AbstractBaseController<S, L, D, Q, C> {
public class BaseController<S extends BaseService<L, D, Q, C>, L, D, Q, C> extends AbstractBaseController<S, L, D, Q, C> {
@Override
public void preHandle(CrudApi crudApi, Object[] args, Method targetMethod, Class<?> targetClass) throws Exception {