zqy
2025-08-02 068a2a5b8898ce2d4e59a4a9482d7236508cc35b
zhang-content/src/main/java/com/ruoyi/service/ZfCollectionDownloadService.java
@@ -1,2 +1,15 @@
package com.ruoyi.service;public interface ZfCollectionDownloadServie {
package com.ruoyi.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.domain.ZfDownload;
public interface ZfCollectionDownloadService extends IService<ZfDownload> {
    AjaxResult addData(ZfDownload zfDownload);
    Boolean deleteData(Long[] ids);
    AjaxResult selectDoctorList(ZfDownload zfDownload, Integer pageNo , Integer pageSize);
}