|
@@ -33,7 +33,8 @@ public interface SiQueryDao {
|
|
|
* @param patNo 门诊号
|
|
|
* @return 门诊患者的身份证和姓名
|
|
|
*/
|
|
|
- @Select("select social_no,rtrim(name) as name,times from mz_patient_mi where patient_id=#{patNo}")
|
|
|
+ @Select("select rtrim(social_no) as socialNo,rtrim(name) as name,times, " +
|
|
|
+ "certificate_type as psnCertType from mz_patient_mi where patient_id=#{patNo}")
|
|
|
QryPsnBsInfo selectMzSocialAndName(@Param("patNo") String patNo);
|
|
|
|
|
|
/**
|