feiyu02
2023-11-15 45fdeee912088efbd07a748a011682c6c6d1ce51
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.flightfeather.monitor.mapper;
 
import com.flightfeather.monitor.pojo.LoginUser;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Select;
 
@Mapper
public interface LoginMapper {
 
 
    @Select("select * from sm_t_userinfo where UI_AccountName =#{uiAccountName} and UI_Password =#{uiPassword}")
    LoginUser getByUsernameAndPassword(LoginUser loginUser);
}