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