From e046dba174365eb8934ee1e4206f09821145e876 Mon Sep 17 00:00:00 2001 From: skyouc Date: 星期四, 21 八月 2025 13:23:22 +0800 Subject: [PATCH] no message --- zy-asrs-wms/src/main/java/com/zy/asrs/wms/system/mapper/UserLoginMapper.java | 28 ++++++++++++++++------------ 1 files changed, 16 insertions(+), 12 deletions(-) diff --git a/zy-asrs-wms/src/main/java/com/zy/asrs/wms/system/mapper/UserLoginMapper.java b/zy-asrs-wms/src/main/java/com/zy/asrs/wms/system/mapper/UserLoginMapper.java index c111e96..17d6200 100644 --- a/zy-asrs-wms/src/main/java/com/zy/asrs/wms/system/mapper/UserLoginMapper.java +++ b/zy-asrs-wms/src/main/java/com/zy/asrs/wms/system/mapper/UserLoginMapper.java @@ -1,12 +1,16 @@ -package com.zy.asrs.wms.system.mapper; - -import com.zy.asrs.wms.system.entity.UserLogin; -import com.baomidou.mybatisplus.core.mapper.BaseMapper; -import org.apache.ibatis.annotations.Mapper; -import org.springframework.stereotype.Repository; - -@Mapper -@Repository -public interface UserLoginMapper extends BaseMapper<UserLogin> { - -} +package com.zy.asrs.wms.system.mapper; + +import com.baomidou.mybatisplus.annotation.InterceptorIgnore; +import com.zy.asrs.wms.system.entity.UserLogin; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Repository; + +@Mapper +@Repository +public interface UserLoginMapper extends BaseMapper<UserLogin> { + + @InterceptorIgnore(tenantLine = "true") // 蹇界暐澶氱鎴锋嫤鎴櫒 + UserLogin superFindByUserId(Long userId, String system); + +} -- Gitblit v1.9.1