|
@@ -54,7 +54,12 @@ public interface PatientCardsDao {
|
|
|
@Param("isDefault") int isDefault);
|
|
|
|
|
|
@Update("update mz_patient_mi set phone_no=#{phone},social_no=#{socialNo},name=#{name} where patient_id=#{patientId}")
|
|
|
- void updateMzPatientMi(ModifyBindParam param);
|
|
|
+ void modifyPatientBindInfo(ModifyBindParam param);
|
|
|
+
|
|
|
+ @Update("update mz_patient_mi set phone_no=#{phone},name=#{name} where patient_id=#{patientId}")
|
|
|
+ void updateMzPatientMi(@Param("patientId") String patientId,
|
|
|
+ @Param("name") String name,
|
|
|
+ @Param("phone") String phone);
|
|
|
|
|
|
@Update("update t_wechat_patient_bind set phone=#{phone},social_no=#{socialNo},name=#{name} where patient_id=#{patientId}")
|
|
|
void updateWechatBind(ModifyBindParam param);
|