StatisticReportMapper.java 404 B

1234567891011121314151617
  1. package com.boman.report.mapper;
  2. import generator.StatisticReport;
  3. public interface StatisticReportMapper {
  4. int deleteByPrimaryKey(Long id);
  5. int insert(StatisticReport record);
  6. int insertSelective(StatisticReport record);
  7. StatisticReport selectByPrimaryKey(Long id);
  8. int updateByPrimaryKeySelective(StatisticReport record);
  9. int updateByPrimaryKey(StatisticReport record);
  10. }