zqy
2024-11-26 8a3d7199725a52b555d46daae5e95cef914c9ab3
1
2
3
4
5
6
7
8
9
10
11
12
13
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 IZfPropertyDownloadService extends IService<ZfDownload> {
    AjaxResult addData(ZfDownload zfDownload);
 
    Boolean deleteData(Long[] ids);
 
    AjaxResult selectDoctorList(ZfDownload zfDownload, Integer pageNo , Integer pageSize);
}