yujian
2019-08-22 427737a79fe272fc0d54911fdf9d0e75a17d61a7
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);
}