#
luxiaotao1123
2024-02-18 56c4f53923375dc005c25530ee253b1e178a1c6c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.zy.asrs.wcs.system.mapper;
 
import com.baomidou.mybatisplus.annotation.InterceptorIgnore;
import com.zy.asrs.wcs.system.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);
 
}