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 {
|
}
|