123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133 |
- package com.huimv.sj.dao;
- import java.util.Date;
- import java.util.List;
- import java.util.Map;
- import com.huimv.sj.dataobject.SjHkaq;
- import com.huimv.sj.dataobject.SjHkaqExample;
- public interface SjHkaqDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_aq
- *
- * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
- */
- int countByExample(SjHkaqExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_aq
- *
- * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
- */
- int deleteByExample(SjHkaqExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_aq
- *
- * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_aq
- *
- * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
- */
- void insert(SjHkaq record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_aq
- *
- * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
- */
- void insertSelective(SjHkaq record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_aq
- *
- * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
- */
- List<SjHkaq> selectByExample(SjHkaqExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_aq
- *
- * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
- */
- SjHkaq selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_aq
- *
- * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
- */
- int updateByExampleSelective(SjHkaq record, SjHkaqExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_aq
- *
- * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
- */
- int updateByExample(SjHkaq record, SjHkaqExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_aq
- *
- * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
- */
- int updateByPrimaryKeySelective(SjHkaq record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_aq
- *
- * @ibatorgenerated Wed Sep 21 13:58:38 CST 2016
- */
- int updateByPrimaryKey(SjHkaq record);
-
- /**
- * 获取最大记录时间
- * @param paramMap
- * @return
- */
- public Date selectHkaqMaxtimeByParam(Map<String, Object> paramMap);
-
- /**
- * 插入数据
- * @param paramMapList
- */
- public void insertHkaqByParam(List<SjHkaq> paramMapList);
-
- /**
- * 根据参数查询全程
- * @param searchParam
- * @return
- */
- public List<SjHkaq> selectQcaqByParam(Map<String, Object> searchParam);
-
- /**
- * 根据参数查询当天
- * @param searchParam
- * @return
- */
- public List<SjHkaq> selectDqaqByParam(Map<String, Object> searchParam);
-
- /**
- * 根据参数查询传感器
- * @param searchParam
- * @return
- */
- public List<SjHkaq> selectHkaqCgqidByParam(Map<String, Object> searchParam);
-
- }
|