package com.huimv.sj.dao; import com.huimv.busi.sj.dto.SjdlslDTO; import com.huimv.sj.dataobject.SjHkdl; import com.huimv.sj.dataobject.SjHkdlExample; import java.util.List; import java.util.Map; public interface SjHkdlDAO { /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dl * * @ibatorgenerated Wed Sep 27 10:21:20 CST 2017 */ int countByExample(SjHkdlExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dl * * @ibatorgenerated Wed Sep 27 10:21:20 CST 2017 */ int deleteByExample(SjHkdlExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dl * * @ibatorgenerated Wed Sep 27 10:21:20 CST 2017 */ int deleteByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dl * * @ibatorgenerated Wed Sep 27 10:21:20 CST 2017 */ void insert(SjHkdl record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dl * * @ibatorgenerated Wed Sep 27 10:21:20 CST 2017 */ void insertSelective(SjHkdl record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dl * * @ibatorgenerated Wed Sep 27 10:21:20 CST 2017 */ List selectByExample(SjHkdlExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dl * * @ibatorgenerated Wed Sep 27 10:21:20 CST 2017 */ SjHkdl selectByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dl * * @ibatorgenerated Wed Sep 27 10:21:20 CST 2017 */ int updateByExampleSelective(SjHkdl record, SjHkdlExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dl * * @ibatorgenerated Wed Sep 27 10:21:20 CST 2017 */ int updateByExample(SjHkdl record, SjHkdlExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dl * * @ibatorgenerated Wed Sep 27 10:21:20 CST 2017 */ int updateByPrimaryKeySelective(SjHkdl record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dl * * @ibatorgenerated Wed Sep 27 10:21:20 CST 2017 */ int updateByPrimaryKey(SjHkdl record); /** * 插入环控氧气 */ public void insertHkdlByParam(List paramMapList); /** * 根据参数查询全程 * @param searchParam * @return */ public List selectQcdlByParam(Map searchParam); /** * 根据参数查询当天 * @param searchParam * @return */ public List selectDqdlByParam(Map searchParam); /** * 根据参数查询传感器 * @param searchParam * @return */ public List selectHkdlCgqidByParam(Map searchParam); /** * 获取每小时耗电量 * @param searchParam * @return */ public List selectHkdlEveryhourByParam(Map searchParam); }