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