JtNewsMapper.java 442 B

123456789101112131415161718192021
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.JtNews;
  3. import com.goafanti.news.bo.OutJtNews;
  4. public interface JtNewsMapper {
  5. int deleteByPrimaryKey(Integer id);
  6. int insert(JtNews record);
  7. int insertSelective(JtNews record);
  8. JtNews selectByPrimaryKey(Integer id);
  9. int updateByPrimaryKeySelective(JtNews record);
  10. int updateByPrimaryKey(JtNews record);
  11. OutJtNews selectByid(Integer id);
  12. }