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