| | |
| | | package com.ruoyi.service.impl;public class ZfClanManageServiceImpl { |
| | | |
| | | package com.ruoyi.service.impl; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.domain.ZfClanManage; |
| | | import com.ruoyi.mapper.ZfClanManageMapper; |
| | | import com.ruoyi.service.ZfClanManageService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | @Service |
| | | public class ZfClanManageServiceImpl extends ServiceImpl<ZfClanManageMapper, ZfClanManage> implements ZfClanManageService { |
| | | @Override |
| | | public AjaxResult selectDataList(ZfClanManage zfClanManage, Integer pageNum, Integer pageSize) { |
| | | return null; |
| | | } |
| | | |
| | | @Override |
| | | public AjaxResult addData(ZfClanManage zfClanManage) { |
| | | return null; |
| | | } |
| | | |
| | | @Override |
| | | public AjaxResult deleteData(Long[] ids) { |
| | | return null; |
| | | } |
| | | |
| | | } |