LinksMapper.java 449 B

12345678910111213141516171819202122
  1. package com.kede.common.dao;
  2. import com.kede.common.model.Links;
  3. import com.kede.linksAndHot.bo.publicLinks;
  4. import java.util.List;
  5. public interface LinksMapper {
  6. int deleteByPrimaryKey(Integer id);
  7. int insert(Links record);
  8. int insertSelective(Links record);
  9. Links selectByPrimaryKey(Integer id);
  10. int updateByPrimaryKeySelective(Links record);
  11. int updateByPrimaryKey(Links record);
  12. List<publicLinks> getAll();
  13. }