package com.ruoyi.manage.service.impl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
import com.ruoyi.manage.mapper.InternalMeetingDetailMapper;
|
import com.ruoyi.manage.pojo.InternalMeetingDetail;
|
import com.ruoyi.manage.service.InternalMeetingDetailService;
|
import org.springframework.stereotype.Service;
|
|
/**
|
* <p>
|
* 内审会议详情表 服务实现类
|
* </p>
|
*
|
* @author
|
* @since 2024-11-12 02:56:13
|
*/
|
@Service
|
public class InternalMeetingDetailServiceImpl extends ServiceImpl<InternalMeetingDetailMapper, InternalMeetingDetail> implements InternalMeetingDetailService {
|
|
}
|