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