Browse Source

查看pacs影像

lighter 11 months ago
parent
commit
6ac42821b0

+ 1 - 1
src/main/java/thyyxxk/wxservice_server/dao/InspectionsDao.java

@@ -31,7 +31,7 @@ public interface InspectionsDao {
     @Select("select max(social_no) from t_wechat_patient_bind where patient_id=#{patNo}")
     String getPatSocialNo(@Param("patNo") String patNo);
 
-    @Select("select patient_uid,patient_name,examin_eparts,check_time from t_check_data " +
+    @Select("select patient_uid,patient_name,examin_eparts,check_time,top_req_no from t_check_data " +
             "where pat_no=#{patientId} and check_time>=#{reqStartTime} and check_time<=#{reqEndTime} ")
     List<TestReport> selectTestReportIndex(ReportIndexInquiry inquiry);
 

+ 1 - 0
src/main/java/thyyxxk/wxservice_server/entity/inspections/response/TestReport.java

@@ -20,4 +20,5 @@ public class TestReport {
     private String reportUrl;
     private Date checkTime;
     private Date reportTime;
+    private Integer topReqNo;
 }