package org.jeecg.modules.mdc.service.impl;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import org.jeecg.modules.mdc.entity.MdcPlanClose;
|
import org.jeecg.modules.mdc.mapper.MdcPlanCloseMapper;
|
import org.jeecg.modules.mdc.service.IMdcPlanCloseService;
|
import org.springframework.stereotype.Service;
|
|
|
/**
|
* @Description: mdc计划停机维护表
|
* @Author: Lius
|
* @Date: 2023-07-13
|
* @Version: V1.0
|
*/
|
@Service
|
public class MdcPlanCloseServiceImpl extends ServiceImpl<MdcPlanCloseMapper, MdcPlanClose> implements IMdcPlanCloseService {
|
|
}
|