ReportWeeklyMapper.java 967 B

12345678910111213141516171819202122232425262728293031
  1. package com.chinaitop.depot.business.mapper;
  2. import java.util.List;
  3. import com.chinaitop.depot.business.model.ReportWeekly;
  4. import com.chinaitop.depot.business.model.ReportWeeklyExample;
  5. import org.apache.ibatis.annotations.Param;
  6. public interface ReportWeeklyMapper {
  7. int countByExample(ReportWeeklyExample example);
  8. int deleteByExample(ReportWeeklyExample example);
  9. int deleteByPrimaryKey(Integer id);
  10. int insert(ReportWeekly record);
  11. int insertSelective(ReportWeekly record);
  12. List<ReportWeekly> selectByExample(ReportWeeklyExample example);
  13. ReportWeekly selectByPrimaryKey(Integer id);
  14. int updateByExampleSelective(@Param("record") ReportWeekly record, @Param("example") ReportWeeklyExample example);
  15. int updateByExample(@Param("record") ReportWeekly record, @Param("example") ReportWeeklyExample example);
  16. int updateByPrimaryKeySelective(ReportWeekly record);
  17. int updateByPrimaryKey(ReportWeekly record);
  18. }