zqy
2024-07-21 0dc6ad890de825f7826ca543a4841fe1c2a22838
zhang-content/src/main/java/com/ruoyi/service/impl/ZfClanManageServiceImpl.java
@@ -1,2 +1,28 @@
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;
    }
}