package org.jeecg.modules.eam.service.impl;
|
|
import org.jeecg.modules.eam.entity.RepairPlanType;
|
import org.jeecg.modules.eam.mapper.RepairPlanTypeMapper;
|
import org.jeecg.modules.eam.service.IRepairPlanTypeService;
|
import org.springframework.stereotype.Service;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
/**
|
* @Description: mom_eam_repair_plan_type
|
* @Author: jeecg-boot
|
* @Date: 2023-03-20
|
* @Version: V1.0
|
*/
|
@Service
|
public class RepairPlanTypeServiceImpl extends ServiceImpl<RepairPlanTypeMapper, RepairPlanType> implements IRepairPlanTypeService {
|
|
}
|