package com.huimv.sj.dao; import java.util.Date; import java.util.List; import java.util.Map; import com.huimv.busi.sj.dto.SjdlslDTO; import com.huimv.sj.dataobject.SjHksd; import com.huimv.sj.dataobject.SjHksdExample; public interface SjHksdDAO { /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sd * * @ibatorgenerated Fri Apr 15 09:47:00 CST 2016 */ int countByExample(SjHksdExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sd * * @ibatorgenerated Fri Apr 15 09:47:00 CST 2016 */ int deleteByExample(SjHksdExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sd * * @ibatorgenerated Fri Apr 15 09:47:00 CST 2016 */ int deleteByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sd * * @ibatorgenerated Fri Apr 15 09:47:00 CST 2016 */ void insert(SjHksd record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sd * * @ibatorgenerated Fri Apr 15 09:47:00 CST 2016 */ void insertSelective(SjHksd record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sd * * @ibatorgenerated Fri Apr 15 09:47:00 CST 2016 */ List selectByExample(SjHksdExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sd * * @ibatorgenerated Fri Apr 15 09:47:00 CST 2016 */ SjHksd selectByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sd * * @ibatorgenerated Fri Apr 15 09:47:00 CST 2016 */ int updateByExampleSelective(SjHksd record, SjHksdExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sd * * @ibatorgenerated Fri Apr 15 09:47:00 CST 2016 */ int updateByExample(SjHksd record, SjHksdExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sd * * @ibatorgenerated Fri Apr 15 09:47:00 CST 2016 */ int updateByPrimaryKeySelective(SjHksd record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sd * * @ibatorgenerated Fri Apr 15 09:47:00 CST 2016 */ int updateByPrimaryKey(SjHksd record); /** * 获取最大记录时间 * @param paramMap * @return */ public Date selectHksdMaxtimeByParam(Map paramMap); /** * 插入数据 * @param paramMapList */ public void insertHksdByParam(List paramMapList); /** * 根据参数查询全程 * @param searchParam * @return */ public List selectQcsdByParam(Map searchParam); /** * 根据参数查询当天 * @param searchParam * @return */ public List selectDqsdByParam(Map searchParam); /** * 根据参数查询传感器 * @param searchParam * @return */ public List selectHksdCgqidByParam(Map searchParam); /** * 获取一天最高和最低温 * @param searchParam * @return */ public SjHksd selectHksdZtgksdByParam(Map searchParam); }