yangys
2024-09-10 1bf92cd596e6d1c259e471dae605fca4d0ed8824
1
2
3
4
5
6
7
8
9
10
11
package com.qianwen.mdc.collect.service;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.qianwen.mdc.collect.entity.mgr.ProductionCalendarDay;
import com.qianwen.mdc.collect.mapper.mgr.CalendarDayMapper;
 
import org.springframework.stereotype.Service;
 
@Service
public class CalendarDayService extends ServiceImpl<CalendarDayMapper, ProductionCalendarDay> {
}