package com.ruoyi.service;
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import com.ruoyi.common.core.domain.AjaxResult;
|
import com.ruoyi.domain.ZfDoctor;
|
|
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);
|
|
}
|