package com.lzl.service;
import java.util.List;
import com.github.pagehelper.PageInfo;
import com.lzl.pojo.Doctor;
public interface DoctorService {
PageInfo<Doctor> findAll(Integer pageNum,Integer pageSize,Doctor doctor);
/**
* 省市县
* @return
*/
List<Doctor> findProvince();
/**
* 科室
* @return
*/
List<Doctor> findDepart();
/**
* 城市
* @param id
* @return
*/
List<Doctor> findTown(Integer id);
/**
* 回显
* @param id
* @return
*/
Doctor findById(Integer id);
/**
*
* @return
*/
List<Doctor> findByShanChang();
/**
* 修改
* @param doctor
* @return
*/
int update(Doctor doctor);
/**
* 添加
* @param doctor
* @return
*/
int add(Doctor doctor);
}