|
@@ -48,6 +48,12 @@ public interface SiZyDao {
|
|
|
@Param("times") int times,
|
|
|
@Param("ledgerSn") int ledgerSn);
|
|
|
|
|
|
+ @Update("update zy_detail_charge set refer_physician=(select refer_physician from zy_actpatient t " +
|
|
|
+ "where t.inpatient_no=#{patNo}) where inpatient_no=#{patNo} and admiss_times=#{times} " +
|
|
|
+ "and nullif(refer_physician,'') is null and nullif(doctor_code,'') is null")
|
|
|
+ void fillReferPhysician(@Param("patNo") String patNo,
|
|
|
+ @Param("times") int times);
|
|
|
+
|
|
|
/**
|
|
|
* 获取患者医保基本信息
|
|
|
*
|