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