admin
2019-08-21 75b9f225c0fb0bbd429d542d4e20337f3c0e13f1
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);
}