zqy
2024-07-28 997b03f08f01f87112227b617e446515b22c6c74
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);
 
}