浏览代码

病案首页填写手术时自动填充手术级别

lighter 1 年之前
父节点
当前提交
3c1baeb356

+ 1 - 1
src/main/java/thyyxxk/webserver/dao/his/inpatient/casefrontsheet/SheetSearchDao.java

@@ -10,7 +10,7 @@ import java.util.List;
 
 @Mapper
 public interface SheetSearchDao {
-    @Select("select top 10 rtrim(code) as code, rtrim(name) as name from " +
+    @Select("select top 10 rtrim(code) as code, rtrim(name) as name, op_scale from " +
             "(SELECT ROW_NUMBER() OVER(ORDER BY code) AS 'Number',* from " +
             "zd_icd9_cm3 with(nolock) where ${method} like #{content} and del_flag=0) a " +
             "where a.[Number]>10*(#{page}-1)")

+ 1 - 0
src/main/java/thyyxxk/webserver/entity/dictionary/CodeName.java

@@ -9,6 +9,7 @@ import lombok.Data;
 public class CodeName {
     private String code;
     private String name;
+    private String opScale;
     private String pyCode;
     private String ssfz;
     private String deptName;

+ 0 - 1
src/main/java/thyyxxk/webserver/service/inpatient/casefrontsheet/CaseFrontSheetMainService.java

@@ -7,7 +7,6 @@ import com.alibaba.fastjson.JSONObject;
 import com.alibaba.fastjson.serializer.SerializerFeature;
 import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
 import lombok.extern.slf4j.Slf4j;
-import org.checkerframework.checker.units.qual.A;
 import org.springframework.scheduling.annotation.Scheduled;
 import org.springframework.stereotype.Service;
 import org.springframework.transaction.annotation.Transactional;