zqy
2024-11-05 9b2e78080fd730b87f6aa6fc2c3e89e2c0df5ad9
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 ZAutobiographyDownloadService extends IService<ZfDownload> {
    AjaxResult addData(ZfDownload zfDownload);
 
    AjaxResult deleteData(Long[] ids);
 
    AjaxResult selectDoctorList(ZfDownload zfDownload, Integer pageNo , Integer pageSize);
}