| | |
| | | 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); |
| | | |
| | | } |
| | | 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);
|
| | |
|
| | | }
|