package org.jeecg.modules.eam.service.impl;
|
|
import org.jeecg.modules.eam.entity.InspectionProject;
|
import org.jeecg.modules.eam.mapper.InspectionProjectMapper;
|
import org.jeecg.modules.eam.service.IInspectionProjectService;
|
import org.springframework.stereotype.Service;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
/**
|
* @Description: mom_eam_inspection_project
|
* @Author: jeecg-boot
|
* @Date: 2023-03-10
|
* @Version: V1.0
|
*/
|
@Service
|
public class InspectionProjectServiceImpl extends ServiceImpl<InspectionProjectMapper, InspectionProject> implements IInspectionProjectService {
|
|
}
|