123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- package com.huimv.sj.dao;
- import com.huimv.busi.tjt.dto.SjFwjlDTO;
- import com.huimv.sj.dataobject.SjFwjl;
- import com.huimv.sj.dataobject.SjFwjlExample;
- import java.util.Date;
- import java.util.List;
- import java.util.Map;
- public interface SjFwjlDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_fwjl
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- int countByExample(SjFwjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_fwjl
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- int deleteByExample(SjFwjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_fwjl
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_fwjl
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- void insert(SjFwjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_fwjl
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- void insertSelective(SjFwjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_fwjl
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- List<SjFwjl> selectByExample(SjFwjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_fwjl
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- SjFwjl selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_fwjl
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- int updateByExampleSelective(SjFwjl record, SjFwjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_fwjl
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- int updateByExample(SjFwjl record, SjFwjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_fwjl
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- int updateByPrimaryKeySelective(SjFwjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_fwjl
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- int updateByPrimaryKey(SjFwjl record);
-
- /**
- * 得到指定条件的访问记录的最大时间
- */
- public Date selectMaxFwjlTimeByParam(Map<String, Object> searchParam);
-
- /**
- * 插入动物访问记录
- */
- public void insertFwjlByParam(List<Map<String, Object>> paramMapList);
-
- /**
- * 插入动物临时访问记录
- */
- public void insertFwjltempByParam(List<Map<String, Object>> paramMapList);
-
- /**
- * 取昨天的所有访问记录
- */
- List<SjFwjl> selectByMap(Map<String, Object> searchParam);
-
- public int countDwebByParam(Map<String, Object> paramMap);
- /**
- * 温度按头数统计
- */
- public List<SjFwjl> selectWdfbByTs(Map<String, Object> searchParam);
-
- /**
- * 温度按时间统计
- */
- public List<SjFwjl> selectWdfbBySj(Map<String, Object> searchParam);
-
- /**
- * 根据温度区间查询
- * @param searchParam
- * @return
- */
- public List<SjFwjl> selectFwjlByWdqj(Map<String, Object> searchParam);
-
- /**
- * 访问次数
- */
- public List<SjFwjlDTO> selectFwcsByDweb(Map<String, Object> searchParam);
- }
|