yujian
2020-04-26 4a901a88c00c4c48d5b6f4fef55de2a2fd82749a
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);
}