admin
2021-06-26 6b2670dfa68af9ce2e36a5f9580125f4fc6da570
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.ks.push.mapper;
 
import com.ks.lib.common.dao.BaseMapper;
import com.ks.push.entity.AdminUser;
import org.springframework.stereotype.Repository;
 
@Repository
public interface AdminUserMapper extends BaseMapper<AdminUser> {
    /**
     * 根据账号查询
     *
     * @param account
     * @return
     */
    AdminUser selectByAccount(String account);
}