Files
love-nav/src/main/java/com/lovenav/mapper/AuthDao.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);
}