Bladeren bron

添加医技报表显示

hsh 2 jaren geleden
bovenliggende
commit
e9a087076e

+ 4 - 1
src/main/java/thyyxxk/webserver/dao/his/highreport/FullScreenDao.java

@@ -19,9 +19,12 @@ public interface FullScreenDao {
 
     @Select("<script> " +
             " select * from report_base_info where flag = 'Y' " +
-            " <if test=\"type = 'cw' \"> " +
+            " <if test=\"type == 'cw' \"> " +
             " and is_cw = 'Y' " +
             " </if> " +
+            " <if test=\"type == 'yj' \"> " +
+            " and is_yj = 'Y' " +
+            " </if> " +
             " order by sort " +
             "</script> ")
     List<ReportBaseInfo> selectFullScreenReport(@Param("type")String type);

+ 4 - 0
src/main/java/thyyxxk/webserver/entity/highreport/ReportBaseInfo.java

@@ -49,6 +49,10 @@ public class ReportBaseInfo implements Serializable {
      * 是否是财务报表指标
      **/
     private String isCw;
+    /**
+     * 是否是医技报表指标
+     **/
+    private String isYj;
     /**
      * 页面展示
      **/