houshuai
2025-07-03 8c945d42c6610abd9ef17bc153114024175bec2a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.jeecg.modules.qms.service.impl;
 
import org.jeecg.modules.qms.entity.InspectionPlan;
import org.jeecg.modules.qms.mapper.InspectionPlanMapper;
import org.jeecg.modules.qms.service.IInspectionPlanService;
import org.springframework.stereotype.Service;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 
/**
 * @Description: 检验方案
 * @Author: jeecg-boot
 * @Date:   2025-07-02
 * @Version: V1.0
 */
@Service
public class InspectionPlanServiceImpl extends ServiceImpl<InspectionPlanMapper, InspectionPlan> implements IInspectionPlanService {
 
}