yaowanxin
7 天以前 e0ba02eb14e31451293a93dafd285b279d9a7775
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 {
 
}