Lius
2025-03-03 5ae1b71ab6b57140d46e6a8b9e606bb4a390ce27
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package org.jeecg.modules.mdc.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import org.jeecg.modules.mdc.entity.MdcEquipmentDaySchedule;
import org.jeecg.modules.mdc.mapper.MdcEquipmentDayScheduleMapper;
import org.jeecg.modules.mdc.service.IMdcEquipmentDayScheduleService;
import org.springframework.stereotype.Service;
 
/**
 * @Author: Lius
 * @CreateTime: 2025-02-26
 * @Description: s
 */
@Service
public class MdcEquipmentDayScheduleServiceImpl extends ServiceImpl<MdcEquipmentDayScheduleMapper, MdcEquipmentDaySchedule> implements IMdcEquipmentDayScheduleService {
}