zqy
2026-01-02 2b6d3425044a9252d534b1b76aad0c510cb3c7d6
zhang-content/src/main/java/com/ruoyi/service/ZfPetDownlService.java
@@ -1,2 +1,15 @@
package com.ruoyi.service;public interface ZfPetDownlService {
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 ZfPetDownlService extends IService<ZfDownload> {
    AjaxResult addData(ZfDownload zfDownload);
    Boolean deleteData(Long[] ids);
    AjaxResult selectDoctorList(ZfDownload zfDownload, Integer pageNo , Integer pageSize);
}