| | |
| | | package com.zy.asrs.wcs.sys.mapper; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.InterceptorIgnore; |
| | | import com.zy.asrs.wcs.sys.entity.User; |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | import org.springframework.stereotype.Repository; |
| | | |
| | | @Mapper |
| | | @Repository |
| | | public interface UserMapper extends BaseMapper<User> { |
| | | |
| | | @InterceptorIgnore(tenantLine = "true") |
| | | User selectByUsername(@Param("username") String username, @Param("hostId") Long hostId); |
| | | |
| | | } |