package com.huimv.sj.dao; import com.huimv.sj.dataobject.SjHkwd; import com.huimv.sj.dataobject.SjHkwdExample; import com.huimv.sj.dataobject.SjWd; import java.util.Date; import java.util.List; import java.util.Map; public interface SjHkwdDAO { /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_wd * * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016 */ int countByExample(SjHkwdExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_wd * * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016 */ int deleteByExample(SjHkwdExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_wd * * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016 */ int deleteByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_wd * * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016 */ void insert(SjHkwd record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_wd * * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016 */ void insertSelective(SjHkwd record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_wd * * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016 */ List selectByExample(SjHkwdExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_wd * * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016 */ SjHkwd selectByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_wd * * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016 */ int updateByExampleSelective(SjHkwd record, SjHkwdExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_wd * * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016 */ int updateByExample(SjHkwd record, SjHkwdExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_wd * * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016 */ int updateByPrimaryKeySelective(SjHkwd record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_wd * * @ibatorgenerated Fri Apr 15 09:15:28 CST 2016 */ int updateByPrimaryKey(SjHkwd record); /** * 获取最大记录时间 * @param paramMap * @return */ public Date selectHkwdMaxtimeByParam(Map paramMap); /** * 插入环控温度数据 * @param paramMapList */ public void insertHkwdByParam(List paramMapList); /** * 根据参数查询全程 * @param searchParam * @return */ public List selectQcwdByParam(Map searchParam); /** * 根据参数查询当天 * @param searchParam * @return */ public List selectDqwdByParam(Map searchParam); /** * 根据参数查询传感器 * @param searchParam * @return */ public List selectHkwdCgqidByParam(Map searchParam); /** * 获取某天最高或者最低温度 * @param searchParam * @return */ public SjHkwd selectHkwdZtgkwdByParam(Map searchParam); }