1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.yuanchu.mom.service;
|
| import com.yuanchu.mom.pojo.InternalMeetingDetail;
| import com.baomidou.mybatisplus.extension.service.IService;
|
| /**
| * <p>
| * 内审会议详情表 服务类
| * </p>
| *
| * @author
| * @since 2024-11-12 02:56:13
| */
| public interface InternalMeetingDetailService extends IService<InternalMeetingDetail> {
|
| }
|
|