Explorar el Código

fix: 套餐包分类缓存修改

xdd hace 2 semanas
padre
commit
b003ede40e

+ 3 - 2
fs-service/src/main/java/com/fs/his/mapper/FsArticleCateMapper.java

@@ -1,8 +1,11 @@
 package com.fs.his.mapper;
 
 import java.util.List;
+import java.util.Map;
+
 import com.fs.his.domain.FsArticleCate;
 import com.fs.his.vo.OptionsVO;
+import org.apache.ibatis.annotations.Param;
 import org.apache.ibatis.annotations.Select;
 
 /**
@@ -65,6 +68,4 @@ public interface FsArticleCateMapper
     List<OptionsVO> selectFsArticleCateAllList();
 
     List<FsArticleCate> selectFsArticleCateAllListVO(@Param("params") Map<String, Object> params);
-    @Select("select * FROM fs_article_cate where is_del=0 and status=1")
-    List<FsArticleCate> selectFsArticleCateAllListVO();
 }