From 2c5f5e7091330a748257baab82e81038a0d22816 Mon Sep 17 00:00:00 2001 From: Fancy <Fancy.fx@outlook.com> Date: 星期四, 26 十二月 2024 10:25:30 +0800 Subject: [PATCH] JWT have some error --- pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoBa/BaPrivilegeMapper.java | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoBa/BaPrivilegeMapper.java b/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoBa/BaPrivilegeMapper.java index 0af28a4..3836c35 100644 --- a/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoBa/BaPrivilegeMapper.java +++ b/pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/daoBa/BaPrivilegeMapper.java @@ -1,10 +1,13 @@ package com.dy.pmsGlobal.daoBa; +import com.dy.pmsGlobal.pojoBa.BaLog; import com.dy.pmsGlobal.pojoBa.BaPrivilege; +import org.apache.ibatis.annotations.MapKey; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; +import java.util.Map; @Mapper public interface BaPrivilegeMapper { @@ -16,7 +19,12 @@ * @return List<BaPrivilege> */ List<BaPrivilege> selectAll() ; - List<BaPrivilege> selectByIds(List<String> ids) ; + + List<BaPrivilege> selectSome(Map<String, Object> params); + + Long selectSomeCount(Map<String, Object> params); + + List<BaPrivilege> selectByIds(@Param("ids") List<String> ids) ; /** * 鏌ヨ鏌愪釜鐢ㄦ埛鎵�闅跺睘鎵�鏈夎鑹茬殑鎵�鏈夋潈闄� -- Gitblit v1.8.0