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 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 searchParam); /** * 插入动物访问记录 */ public void insertFwjlByParam(List> paramMapList); /** * 插入动物临时访问记录 */ public void insertFwjltempByParam(List> paramMapList); /** * 取昨天的所有访问记录 */ List selectByMap(Map searchParam); public int countDwebByParam(Map paramMap); /** * 温度按头数统计 */ public List selectWdfbByTs(Map searchParam); /** * 温度按时间统计 */ public List selectWdfbBySj(Map searchParam); /** * 根据温度区间查询 * @param searchParam * @return */ public List selectFwjlByWdqj(Map searchParam); /** * 访问次数 */ public List selectFwcsByDweb(Map searchParam); }