|
@@ -18,6 +18,7 @@ import thyyxxk.webserver.entity.medicalinsurance.manage.frontsheet.Diseinfo;
|
|
|
import thyyxxk.webserver.entity.medicalinsurance.manage.orderinfo.ActOrder;
|
|
|
|
|
|
import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
|
|
|
/**
|
|
|
* @author: DingJie
|
|
@@ -227,4 +228,11 @@ public interface SiManageDao {
|
|
|
@Select("select mdtrtSn=pat_no+'_'+cast(times as varchar),medrcdno=pat_no+'_'+cast(times as varchar) " +
|
|
|
"from t_si_setlinfo where pat_no=#{patNo} and times=#{times}")
|
|
|
List<EmergencyOprninfo> selectEmergencyOprninfos(@Param("patNo") String patNo, @Param("times") int times);
|
|
|
+
|
|
|
+ @Select(" select mdtrt_id as mdtrtId, setl_id as setlId, hilist_name as hilistName, hilist_code as hilistCode, " +
|
|
|
+ " fee_ocur_time as feeOcurTime, det_item_fee_sumamt as totalFee, pric, cnt, " +
|
|
|
+ " bilg_dept_name as bilgDeptName, bilg_dr_name as bilgDrName, opter_name as opterName, " +
|
|
|
+ " opt_time as optTime, chrgitm_lv_name as chrgitmLvName " +
|
|
|
+ " from t_si_setl_fee_detl where mdtrt_id = #{mdtrtId} ")
|
|
|
+ List<Map<String, Object>> selectSetlPrescription(@Param("mdtrtId") String mdtrtId);
|
|
|
}
|