zqy
2025-05-20 227402da809c41d33fe206f7a5e88a08e17c18f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.domain.MeetingStatistic;
 
import java.util.List;
 
public interface MeetingStatisticService extends IService<MeetingStatistic> {
 
    AjaxResult updateData(MeetingStatistic meetingStatistic);
 
    AjaxResult deleteData(Long[] ids);
 
    AjaxResult DataList(MeetingStatistic meetingStatistic);
 
    AjaxResult addData(MeetingStatistic meetingStatistic);
 
    List<MeetingStatistic> selectByIds(Long[] ids);
 
    AjaxResult selectDataList(MeetingStatistic meetingStatistic, Integer pageNum, Integer pageSize);
}