| 12345678910111213141516171819202122232425262728293031 |
- package com.chinaitop.depot.business.mapper;
- import java.util.List;
- import com.chinaitop.depot.business.model.ReportWeekly;
- import com.chinaitop.depot.business.model.ReportWeeklyExample;
- import org.apache.ibatis.annotations.Param;
- public interface ReportWeeklyMapper {
- int countByExample(ReportWeeklyExample example);
- int deleteByExample(ReportWeeklyExample example);
- int deleteByPrimaryKey(Integer id);
- int insert(ReportWeekly record);
- int insertSelective(ReportWeekly record);
- List<ReportWeekly> selectByExample(ReportWeeklyExample example);
- ReportWeekly selectByPrimaryKey(Integer id);
- int updateByExampleSelective(@Param("record") ReportWeekly record, @Param("example") ReportWeeklyExample example);
- int updateByExample(@Param("record") ReportWeekly record, @Param("example") ReportWeeklyExample example);
- int updateByPrimaryKeySelective(ReportWeekly record);
- int updateByPrimaryKey(ReportWeekly record);
- }
|