zqy
2024-08-02 1c592426db7393a5d891478be3e303563c038d30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 
package com.ruoyi.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.domain.Meeting;
import com.ruoyi.domain.ZfClan;
 
import java.util.List;
 
public interface ZfClanService extends IService<ZfClan> {
 
    AjaxResult selectDataList(ZfClan zfClan, Integer pageNo, Integer pageSize);
 
    AjaxResult addData(ZfClan zfClan);
 
    AjaxResult updateData(ZfClan zfClan);
 
    AjaxResult deleteData(Long ids);
 
    AjaxResult selectDataList(ZfClan zfClan);
 
}