|
@@ -391,4 +391,29 @@ public interface PatientDao {
|
|
|
@Param("responceType") String responceType,
|
|
|
@Param("ybType") String ybType,
|
|
|
@Param("treatType") String treatType);
|
|
|
+
|
|
|
+ @Update("execute zy_receive_drug #{zyh},#{times},#{zyh},#{infant} ")
|
|
|
+ void zyReceiveDrug(@Param("zyh") String zyh,
|
|
|
+ @Param("times") int times,
|
|
|
+ @Param("infant") int infant);
|
|
|
+
|
|
|
+ @Update("execute zy_receive_one #{zyh},#{times},#{zyh},#{infant} ")
|
|
|
+ void zyReceiveOne(@Param("zyh") String zyh,
|
|
|
+ @Param("times") int times,
|
|
|
+ @Param("infant") int infant);
|
|
|
+
|
|
|
+ @Update("execute dbo.zy_cngl_fyjs_list_yz #{zyh},#{times} " )
|
|
|
+ void zyCnglFyjsListYz(@Param("zyh") String zyh,
|
|
|
+ @Param("times") int times);
|
|
|
+
|
|
|
+ @Update("update zy_detail_charge set charge_status='2' where " +
|
|
|
+ "inpatient_no=#{zyh} and admiss_times=#{times} and ledger_sn=#{ledger} ")
|
|
|
+ void updateZyDetailCharge(@Param("zyh") String zyh,
|
|
|
+ @Param("times") int times,
|
|
|
+ @Param("ledger") int ledger);
|
|
|
+
|
|
|
+ @Update("execute zy_calc_detail_again_new #{zyh},#{times},#{ledger},1,1")
|
|
|
+ void zyCalcDetailAgainNew(@Param("zyh") String zyh,
|
|
|
+ @Param("times") int times,
|
|
|
+ @Param("ledger") int ledger);
|
|
|
}
|