| | |
| | | |
| | | package com.ruoyi.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | |
| | | import com.ruoyi.domain.ZfClanManage; |
| | | |
| | | public interface ZfClanManageService extends IService<ZfClanManage> { |
| | | AjaxResult selectDataList(ZfClanManage zfClanManage, Integer pageNum, Integer pageSize); |
| | | 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(Long[] ids); |
| | | AjaxResult deleteData(Integer clanId, Integer id); |
| | | |
| | | } |