zqy
2024-12-03 ac3aa95b729366bd9f3a1585bbab84f75709b062
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 ZfRelationDownloadService extends IService<ZfDownload> {
    AjaxResult addData(ZfDownload zfDownload);
 
    AjaxResult deleteData(Long[] ids);
 
    AjaxResult selectDoctorList(ZfDownload zfDownload, Integer pageNo , Integer pageSize);
}