Browse Source

修复问题和删除没用的东西

xiaochan 1 year ago
parent
commit
9b620e9a7f

+ 0 - 1
src/main/java/thyyxxk/webserver/dao/his/inpatient/XiangMuLuRuDao.java

@@ -273,7 +273,6 @@ public interface XiangMuLuRuDao extends BaseMapper<ZyDetailCharge> {
             "        a.code=b.charge_code and " +
             "        a.code=c.charge_code and " +
             "        a.serial=c.serial    and " +
-            "        c.visible_flag_mz <> '1' and " +
             "        c.visible_flag_zy <> '1' and" +
             "        isnull(a.del_flag,0) = 0 and  " +
             "        c.group_no='73'")

+ 1 - 5
src/main/java/thyyxxk/webserver/service/redislike/RedisLikeService.java

@@ -47,9 +47,7 @@ public class RedisLikeService {
     private final static Map<String, String> YB_DEPT_MAP = new HashMap<>();
     public static final Map<String, YzZdOrderItemConfirm> specialMedicalAdvice = new HashMap<>();
     private final RedisLikeDao dao;
-    private final CorpWxSrvc srvc;
     private final YiZhuLuRuDao yzDao;
-    private final TokenService tokenService;
     private final LoginDao loginDao;
 
     private final static Map<String, String> MESSAGE = new HashMap<>(2);
@@ -62,12 +60,10 @@ public class RedisLikeService {
         return MESSAGE;
     }
 
-    public RedisLikeService(RedisServer redisServer, RedisLikeDao dao, CorpWxSrvc srvc, YiZhuLuRuDao yzDao, TokenService tokenService, LoginDao loginDao) {
+    public RedisLikeService(RedisServer redisServer, RedisLikeDao dao, YiZhuLuRuDao yzDao, LoginDao loginDao) {
         this.redisServer = redisServer;
         this.dao = dao;
-        this.srvc = srvc;
         this.yzDao = yzDao;
-        this.tokenService = tokenService;
         this.loginDao = loginDao;
     }