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