123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- 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<SjWeatherData> 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<SjWeatherData> 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);
- }
|