xuhy
2025-04-24 1c139903c8da49a46bdde66f3a68064cbf22f111
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.system.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.system.mapper.TQaTestItemReportMapper;
import com.ruoyi.system.model.TQaTestItemReport;
import com.ruoyi.system.service.TQaTestItemReportService;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * QA检测项报告 服务实现类
 * </p>
 *
 * @author xiaochen
 * @since 2025-04-08
 */
@Service
public class TQaTestItemReportServiceImpl extends ServiceImpl<TQaTestItemReportMapper, TQaTestItemReport> implements TQaTestItemReportService {
 
}