|
@@ -47,7 +47,7 @@ public interface PatientCardsDao {
|
|
|
@Param("openid") String openid,
|
|
|
@Param("isDefault") int isDefault);
|
|
|
|
|
|
- @Update("update mz_patient_mi set phone_no=#{phone},social_no=#{socialNo},name=#{name} where patient_id=#{patientId}")
|
|
|
+ @Update("update mz_patient_mi set phone_no=#{phone} where patient_id=#{patientId}")
|
|
|
void modifyPatientBindInfo(ModifyBindParam param);
|
|
|
|
|
|
@Update("update mz_patient_mi set phone_no=#{phone},name=#{name} where patient_id=#{patientId}")
|
|
@@ -55,7 +55,7 @@ public interface PatientCardsDao {
|
|
|
@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}")
|
|
|
+ @Update("update t_wechat_patient_bind set phone=#{phone} where patient_id=#{patientId}")
|
|
|
void updateWechatBind(ModifyBindParam param);
|
|
|
|
|
|
@Update("update t_wechat_patient_bind set del_flag=0,name=#{name},phone=#{phone}, " +
|