admin
2020-06-09 b66e339f4ea1d4dfad8c21658e1e83046ee511f4
1
2
3
4
5
6
7
8
9
10
11
package com.yeshi.fanli.dao.mybatis;
 
import org.apache.ibatis.annotations.Param;
 
import com.yeshi.fanli.dao.BaseMapper;
import com.yeshi.fanli.entity.common.AdminUser;
 
public interface AdminUserMapper extends BaseMapper<AdminUser>{
 
    AdminUser getByAccountAndPwd(@Param("account") String account, @Param("pwd") String pwd);
}