huminmin
15 小时以前 466ee077797f7c145fee8462f14029255618aa6a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.production.service.impl;
 
import com.ruoyi.production.pojo.ProductInspectionRecord;
import com.ruoyi.production.mapper.ProductInspectionRecordMapper;
import com.ruoyi.production.service.ProductInspectionRecordService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.springframework.stereotype.Service;
 
/**
 * <p>
 * 巡检记录表 服务实现类
 * </p>
 *
 * @author 芯导软件(江苏)有限公司
 * @since 2026-03-16 04:16:32
 */
@Service
public class ProductInspectionRecordServiceImpl extends ServiceImpl<ProductInspectionRecordMapper, ProductInspectionRecord> implements ProductInspectionRecordService {
 
}