zqy
2024-07-25 6f78cfae24b940229bd282ce3b3d0e6f5b337fa7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
 
package com.ruoyi.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.domain.ZfClan;
import com.ruoyi.domain.ZfClanManage;
 
public interface ZfClanManageService extends IService<ZfClanManage> {
    AjaxResult selectDataList(Integer clanId, Integer pageNo, Integer pageSize);
 
    void addA(Integer clanId,Integer memberId,Integer roleId);
 
    void deleteMember(Long ids);
 
    AjaxResult addData(ZfClanManage zfClanManage);
 
    AjaxResult deleteData(Integer clanId, Integer id);
 
}