package pwc.taxtech.atms.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.MyMapper; import pwc.taxtech.atms.entity.CitAssetEamMapping; import pwc.taxtech.atms.entity.CitAssetEamMappingExample; @Mapper public interface CitAssetEamMappingMapper extends MyMapper { /** * This method was generated by MyBatis Generator. * This method corresponds to the database table cit_asset_eam_mapping * * @mbg.generated */ long countByExample(CitAssetEamMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table cit_asset_eam_mapping * * @mbg.generated */ int deleteByExample(CitAssetEamMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table cit_asset_eam_mapping * * @mbg.generated */ int deleteByPrimaryKey(Long id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table cit_asset_eam_mapping * * @mbg.generated */ int insert(CitAssetEamMapping record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table cit_asset_eam_mapping * * @mbg.generated */ int insertSelective(CitAssetEamMapping record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table cit_asset_eam_mapping * * @mbg.generated */ List<CitAssetEamMapping> selectByExampleWithRowbounds(CitAssetEamMappingExample example, RowBounds rowBounds); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table cit_asset_eam_mapping * * @mbg.generated */ List<CitAssetEamMapping> selectByExample(CitAssetEamMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table cit_asset_eam_mapping * * @mbg.generated */ CitAssetEamMapping selectByPrimaryKey(Long id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table cit_asset_eam_mapping * * @mbg.generated */ int updateByExampleSelective(@Param("record") CitAssetEamMapping record, @Param("example") CitAssetEamMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table cit_asset_eam_mapping * * @mbg.generated */ int updateByExample(@Param("record") CitAssetEamMapping record, @Param("example") CitAssetEamMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table cit_asset_eam_mapping * * @mbg.generated */ int updateByPrimaryKeySelective(CitAssetEamMapping record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table cit_asset_eam_mapping * * @mbg.generated */ int updateByPrimaryKey(CitAssetEamMapping record); int insertBatch(List<CitAssetEamMapping> citAssetEamMappings); }