Files
love-nav/src/main/java/com/lovenav/mapper/UrlAccessDao.java

19 lines
431 B
Java

package com.lovenav.mapper;
import com.lovenav.entity.UrlAccess;
import org.springframework.stereotype.Repository;
@Repository
public interface UrlAccessDao {
int deleteByPrimaryKey(Integer id);
int insert(UrlAccess record);
int insertSelective(UrlAccess record);
UrlAccess selectByPrimaryKey(Integer id);
int updateByPrimaryKeySelective(UrlAccess record);
int updateByPrimaryKey(UrlAccess record);
}