zhuo
2025-04-23 234b0ac195934b34c06045b2d2ef0f10e239dd8e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 {
 
}