19 lines
396 B
Java
19 lines
396 B
Java
package com.lovenav.mapper;
|
|
|
|
import com.lovenav.entity.Auth;
|
|
import org.springframework.stereotype.Repository;
|
|
|
|
@Repository
|
|
public interface AuthDao {
|
|
int deleteByPrimaryKey(Integer id);
|
|
|
|
int insert(Auth record);
|
|
|
|
int insertSelective(Auth record);
|
|
|
|
Auth selectByPrimaryKey(Integer id);
|
|
|
|
int updateByPrimaryKeySelective(Auth record);
|
|
|
|
int updateByPrimaryKey(Auth record);
|
|
} |