健康咨询-科室人员管理新增接口修改
This commit is contained in:
parent
f20e9b3434
commit
cdbe5504fb
@ -3,9 +3,10 @@ package com.xinelu.manage.mapper.hospitalpersoninfo;
|
|||||||
import com.xinelu.manage.domain.hospitalpersoninfo.HospitalPersonInfo;
|
import com.xinelu.manage.domain.hospitalpersoninfo.HospitalPersonInfo;
|
||||||
import com.xinelu.manage.dto.hospitalpersoninfo.HospitalPersonInfoDtoo;
|
import com.xinelu.manage.dto.hospitalpersoninfo.HospitalPersonInfoDtoo;
|
||||||
import com.xinelu.manage.vo.hospitalpersoninfo.HospitalPersonInfoVO;
|
import com.xinelu.manage.vo.hospitalpersoninfo.HospitalPersonInfoVO;
|
||||||
import java.util.List;
|
|
||||||
import org.apache.ibatis.annotations.Param;
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 健康咨询-科室人员信息Mapper接口
|
* 健康咨询-科室人员信息Mapper接口
|
||||||
@ -111,20 +112,27 @@ public interface HospitalPersonInfoMapper {
|
|||||||
int selectHospitalPersonInfoByIdCount(Long id);
|
int selectHospitalPersonInfoByIdCount(Long id);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @return com.xinelu.manage.domain.hospitalpersoninfo.HospitalPersonInfo
|
||||||
* @Author mengkuiliang
|
* @Author mengkuiliang
|
||||||
* @Description 根据科室人员编码查询人员信息
|
* @Description 根据科室人员编码查询人员信息
|
||||||
* @Date 2023-10-20 020 14:37
|
* @Date 2023-10-20 020 14:37
|
||||||
* @Param [personCode]
|
* @Param [personCode]
|
||||||
* @return com.xinelu.manage.domain.hospitalpersoninfo.HospitalPersonInfo
|
|
||||||
**/
|
**/
|
||||||
HospitalPersonInfo getByPersonCode(@Param("personCode") String personCode, @Param("status") String status);
|
HospitalPersonInfo getByPersonCode(@Param("personCode") String personCode, @Param("status") String status);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* @return int
|
||||||
* @Author mengkuiliang
|
* @Author mengkuiliang
|
||||||
* @Description 根据科室人员编号更新
|
* @Description 根据科室人员编号更新
|
||||||
* @Date 2023-10-20 020 15:03
|
* @Date 2023-10-20 020 15:03
|
||||||
* @Param [hospitalPersonInfo]
|
|
||||||
* @return int
|
|
||||||
**/
|
**/
|
||||||
int updateByPersonCode(HospitalPersonInfo hospitalPersonInfo);
|
int updateByPersonCode(HospitalPersonInfo hospitalPersonInfo);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据手机号查询当前科室人员信息是否存在,用于判断手机号唯一
|
||||||
|
*
|
||||||
|
* @param phone 手机号号码
|
||||||
|
* @return 数量
|
||||||
|
*/
|
||||||
|
int getPersonInfoByPhoneNumber(@Param("phoneNumber") String phone);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user