feige
2024-06-22 5cdf5c84b04951a6fe43fbe622335f0a14b44f77
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.ruoyi.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.domain.Meeting;
 
public interface MeetingRatifyService extends IService<Meeting> {
 
    AjaxResult selectDataList(Meeting meeting, Integer pageNum, Integer pageSize);
 
    AjaxResult updateData(Meeting meeting);
 
}