zqy
2024-07-21 392cbd30e4d512ddb42aed63e23bad1537e8fe81
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
    }
}