| | |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.domain.Meeting; |
| | | import com.ruoyi.domain.ZfClan; |
| | | import com.ruoyi.domain.ZfClean; |
| | | import com.ruoyi.domain.ZfProperty; |
| | | |
| | | import java.util.List; |
| | | |
| | | public interface ZfClanService extends IService<ZfClan> { |
| | | |
| | | AjaxResult selectDataList(ZfClan zfClan, Integer pageNo, Integer pageSize); |
| | | |
| | | AjaxResult selectData(); |
| | | AjaxResult addData(ZfClan zfClan); |
| | | |
| | | AjaxResult updateData(ZfClan zfClan); |
| | | |
| | | AjaxResult deleteData(Long ids); |
| | | |
| | | AjaxResult selectDataList(ZfClan zfClan); |
| | | |
| | | List<ZfClan> selectByCondition(ZfClan zfClan); |
| | | |
| | | List<ZfClan> selectByIds(Long[] ids); |
| | | |
| | | } |