feige
2024-11-19 e4e92aa0b85c414cd4cb706d76d5db557a521757
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.ruoyi.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.domain.ZfDownload;
 
import java.util.List;
 
 
public interface ZfDoctorDownloadService extends IService<ZfDownload> {
    AjaxResult addData(ZfDownload zfDownload);
 
    Boolean deleteData(Long[] ids);
 
    AjaxResult selectDoctorList(ZfDownload zfDownload, Integer pageNo , Integer pageSize);
 
    List<ZfDownload> getByUserId(Long userId);
 
 
}