|
@@ -455,9 +455,11 @@ public interface CaseFrontSheetDao extends BaseMapper<CaseFrontsheetMain> {
|
|
|
"#{assistantTwo},#{cut},#{heal},#{anaesthesia},#{anaesthesiaor},#{date},#{opEndDate},#{anstStartDate},#{anstEndDate})")
|
|
|
void writeNewZySurgeryRecord(CaseFrontsheetSurgery surgery);
|
|
|
|
|
|
- @Update("update t_case_frontsheet_main set file_status=1, sign_date=getdate(), late_flag=#{late} " +
|
|
|
+ @Update("update t_case_frontsheet_main set file_status=1, sign_date=getdate(), " +
|
|
|
+ "late_flag=#{late},sign_staff=#{staff} " +
|
|
|
"where bah=#{bah} and admiss_times=#{times}")
|
|
|
- void updateSignStatus(@Param("bah") String bah, @Param("times") int times, @Param("late") int late);
|
|
|
+ void updateSignStatus(@Param("bah") String bah, @Param("times") int times,
|
|
|
+ @Param("late") int late, @Param("staff") String staff);
|
|
|
|
|
|
@Insert("insert into ba_op_log (op_type, op_id, op_time, inpatient_no, admiss_times) values " +
|
|
|
"(#{opType}, #{staffId}, getDate(), #{bah}, #{admissTimes})")
|