kongdeqiang
2024-07-15 ae30a7db511ae2439289a7dd137fa3229af75f74
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.by4cloud.platformx.zczx.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.by4cloud.platformx.zczx.entity.InspectionLog;
import com.by4cloud.platformx.zczx.mapper.InspectionLogMapper;
import com.by4cloud.platformx.zczx.service.InspectionLogService;
import org.springframework.stereotype.Service;
/**
 * 巡检日志
 *
 * @author kdq
 * @date 2024-07-10 09:27:13
 */
@Service
public class InspectionLogServiceImpl extends ServiceImpl<InspectionLogMapper, InspectionLog> implements InspectionLogService {
}