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