package com.huimv.sj.dao; import com.huimv.sj.dataobject.SjWeatherData; import com.huimv.sj.dataobject.SjWeatherDataExample; import java.util.List; public interface SjWeatherDataDAO { /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_weatherdata * * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015 */ int countByExample(SjWeatherDataExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_weatherdata * * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015 */ int deleteByExample(SjWeatherDataExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_weatherdata * * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015 */ int deleteByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_weatherdata * * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015 */ void insert(SjWeatherData record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_weatherdata * * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015 */ void insertSelective(SjWeatherData record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_weatherdata * * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015 */ List selectByExampleWithBLOBs(SjWeatherDataExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_weatherdata * * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015 */ List selectByExampleWithoutBLOBs(SjWeatherDataExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_weatherdata * * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015 */ SjWeatherData selectByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_weatherdata * * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015 */ int updateByExampleSelective(SjWeatherData record, SjWeatherDataExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_weatherdata * * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015 */ int updateByExampleWithBLOBs(SjWeatherData record, SjWeatherDataExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_weatherdata * * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015 */ int updateByExampleWithoutBLOBs(SjWeatherData record, SjWeatherDataExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_weatherdata * * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015 */ int updateByPrimaryKeySelective(SjWeatherData record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_weatherdata * * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015 */ int updateByPrimaryKeyWithBLOBs(SjWeatherData record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_weatherdata * * @ibatorgenerated Thu Jan 22 15:06:33 CST 2015 */ int updateByPrimaryKeyWithoutBLOBs(SjWeatherData record); }