refactor(qms): 移除检测项类别接口中的分页查询方法
- 删除了 IQcInspectionItemCategoryService 接口中的 queryPageList 方法 - 移除了与分页查询相关的导入信息 - 更新了接口文档中的作者日期信息master
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;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue