123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- package com.huimv.sj.dao;
- import com.huimv.sj.dataobject.SjHkwd;
- import com.huimv.sj.dataobject.SjHkwdExample;
- import com.huimv.sj.dataobject.SjWd;
- import java.util.Date;
- import java.util.List;
- import java.util.Map;
- public interface SjHkwdDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_wd
- *
- * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016
- */
- int countByExample(SjHkwdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_wd
- *
- * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016
- */
- int deleteByExample(SjHkwdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_wd
- *
- * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_wd
- *
- * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016
- */
- void insert(SjHkwd record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_wd
- *
- * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016
- */
- void insertSelective(SjHkwd record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_wd
- *
- * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016
- */
- List<SjHkwd> selectByExample(SjHkwdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_wd
- *
- * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016
- */
- SjHkwd selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_wd
- *
- * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016
- */
- int updateByExampleSelective(SjHkwd record, SjHkwdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_wd
- *
- * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016
- */
- int updateByExample(SjHkwd record, SjHkwdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_wd
- *
- * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016
- */
- int updateByPrimaryKeySelective(SjHkwd record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_wd
- *
- * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016
- */
- int updateByPrimaryKey(SjHkwd record);
-
- /**
- * 获取最大记录时间
- * @param paramMap
- * @return
- */
- public Date selectHkwdMaxtimeByParam(Map<String, Object> paramMap);
-
- /**
- * 插入环控温度数据
- * @param paramMapList
- */
- public void insertHkwdByParam(List<SjHkwd> paramMapList);
-
- /**
- * 根据参数查询全程
- * @param searchParam
- * @return
- */
- public List<SjHkwd> selectQcwdByParam(Map<String, Object> searchParam);
-
- /**
- * 根据参数查询当天
- * @param searchParam
- * @return
- */
- public List<SjHkwd> selectDqwdByParam(Map<String, Object> searchParam);
-
- /**
- * 根据参数查询传感器
- * @param searchParam
- * @return
- */
- public List<SjHkwd> selectHkwdCgqidByParam(Map<String, Object> searchParam);
-
- /**
- * 获取某天最高或者最低温度
- * @param searchParam
- * @return
- */
- public SjHkwd selectHkwdZtgkwdByParam(Map<String, Object> searchParam);
- }
|