| | |
| | | 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 { |
| | | public interface AdminUserMapper extends BaseMapper<AdminUser>{ |
| | | |
| | | int deleteByPrimaryKey(Long id); |
| | | |
| | | int insert(AdminUser record); |
| | | |
| | | int insertSelective(AdminUser record); |
| | | |
| | | AdminUser selectByPrimaryKey(Long id); |
| | | |
| | | int updateByPrimaryKeySelective(AdminUser record); |
| | | |
| | | int updateByPrimaryKey(AdminUser record); |
| | | AdminUser getByAccountAndPwd(@Param("account") String account, @Param("pwd") String pwd); |
| | | } |