feige
2024-09-03 c8ea9050a3e82eba68617c1a85ebb8b93eb885a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package com.ruoyi.service;
 
 
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.domain.ZfDoctor;
import org.springframework.web.multipart.MultipartFile;
 
import java.util.List;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author ojq
 * @since 2023-03-12
 */
public interface ZfDoctorService extends IService<ZfDoctor> {
 
 
 
    AjaxResult selectDoctorList(ZfDoctor zfDoctor, Integer pageNum, Integer pageSize);
 
    List<ZfDoctor> selectByCondition(ZfDoctor zfDoctor);
    List<ZfDoctor> selectByIds(Long[] ids);
 
//    AjaxResult mySave(ZfDoctor zfDoctor);
 
    AjaxResult importExcel(MultipartFile file);
 
    AjaxResult addData(ZfDoctor zfDoctor);
 
    AjaxResult updateData(ZfDoctor zfDoctor);
 
    AjaxResult deleteData(Long[] ids);
 
    AjaxResult listType();
 
//    AjaxResult selectListById(List<Long> ids, Integer pageNum, Integer pageSize);
}