admin
2019-05-15 3be3f6e670d2e11d7ced76b8202f0ef30b56870f
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/AdminUserMapper.java
@@ -1,18 +1,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 {
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);
}