| | |
| | | package com.ruoyi.service;public interface ZfClanManageService { |
| | | |
| | | 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); |
| | | |
| | | } |