refactor(qms): 移除检测项类别接口中的分页查询方法

- 删除了 IQcInspectionItemCategoryService 接口中的 queryPageList 方法
- 移除了与分页查询相关的导入信息
- 更新了接口文档中的作者日期信息
master
zch 4 days ago
parent 7ea5724eff
commit 688635ef01

@ -0,0 +1,35 @@
package org.dromara.qms.controller;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.dromara.qms.service.*;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
@Validated
@RequiredArgsConstructor
@Slf4j
@RestController
@RequestMapping("/qcMobile")
public class QcPDAController {
//检测模板主表
private final IQcInspectionTemplateService qcInspectionTemplateService;
//检测类型
private final IQcInspectionTypeService qcInspectionTypeService;
//质检主表
private final IQcInspectionMainService qcInspectionMainService;
//检测项类别
private final IQcInspectionItemCategoryService qcInspectionItemCategoryService;
//检测项定义
private final IQcInspectionItemService qcInspectionItemService;
//不合格品待评审
private final IQcUnqualifiedReviewService qcUnqualifiedReviewService;
//不合格品评审记录
private final IQcUnqualifiedRecordService qcUnqualifiedRecordService;
}

@ -3,8 +3,6 @@ package org.dromara.qms.service;
import org.dromara.qms.domain.QcInspectionItemCategory;
import org.dromara.qms.domain.vo.QcInspectionItemCategoryVo;
import org.dromara.qms.domain.bo.QcInspectionItemCategoryBo;
import org.dromara.common.mybatis.core.page.TableDataInfo;
import org.dromara.common.mybatis.core.page.PageQuery;
import java.util.Collection;
import java.util.List;
@ -13,7 +11,7 @@ import java.util.List;
* Service
*
* @author zch
* @date 2025-07-14
* @date 2025-07-17
*/
public interface IQcInspectionItemCategoryService {
@ -25,14 +23,6 @@ public interface IQcInspectionItemCategoryService {
*/
QcInspectionItemCategoryVo queryById(Long categoryId);
/**
*
*
* @param bo
* @param pageQuery
* @return
*/
TableDataInfo<QcInspectionItemCategoryVo> queryPageList(QcInspectionItemCategoryBo bo, PageQuery pageQuery);
/**
*

Loading…
Cancel
Save