|
@@ -190,7 +190,9 @@ public interface TriageDao {
|
|
|
"from mzfz_patient_order where serial_no=#{serialNo}")
|
|
|
MessageForPush selectMessageForPush(@Param("serialNo") int serialNo);
|
|
|
|
|
|
- @Update("update t_triage_notify_relation set notify_datetime=getdate() where serial_no=#{serialNo}")
|
|
|
+ @Update("update t_triage_notify_relation set notify_datetime=getdate() " +
|
|
|
+ "where serial_no=#{serialNo}; " +
|
|
|
+ "update mzfz_patient_order set status_flag='3' where serial_no=#{serialNo}")
|
|
|
void updateNotifyDatetime(@Param("serialNo") int serialNo);
|
|
|
|
|
|
@Delete("delete from t_triage_notify_relation where serial_no=#{serialNo}")
|