package pwc.taxtech.atms.analysis.dao; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.session.RowBounds; import pwc.taxtech.atms.MyAnalysisMapper; import pwc.taxtech.atms.analysis.entity.AnalysisMaster; import pwc.taxtech.atms.analysis.entity.AnalysisMasterExample; @Mapper public interface AnalysisMasterMapper extends MyAnalysisMapper { /** * This method was generated by MyBatis Generator. * This method corresponds to the database table analysis_master * * @mbg.generated */ long countByExample(AnalysisMasterExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table analysis_master * * @mbg.generated */ int deleteByExample(AnalysisMasterExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table analysis_master * * @mbg.generated */ int deleteByPrimaryKey(Long id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table analysis_master * * @mbg.generated */ int insert(AnalysisMaster record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table analysis_master * * @mbg.generated */ int insertSelective(AnalysisMaster record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table analysis_master * * @mbg.generated */ List<AnalysisMaster> selectByExampleWithRowbounds(AnalysisMasterExample example, RowBounds rowBounds); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table analysis_master * * @mbg.generated */ List<AnalysisMaster> selectByExample(AnalysisMasterExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table analysis_master * * @mbg.generated */ AnalysisMaster selectByPrimaryKey(Long id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table analysis_master * * @mbg.generated */ int updateByExampleSelective(@Param("record") AnalysisMaster record, @Param("example") AnalysisMasterExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table analysis_master * * @mbg.generated */ int updateByExample(@Param("record") AnalysisMaster record, @Param("example") AnalysisMasterExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table analysis_master * * @mbg.generated */ int updateByPrimaryKeySelective(AnalysisMaster record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table analysis_master * * @mbg.generated */ int updateByPrimaryKey(AnalysisMaster record); }