package com.huimv.sj.dao; import com.huimv.sj.dataobject.SjHksy; import com.huimv.sj.dataobject.SjHksyExample; import java.util.Date; import java.util.List; import java.util.Map; public interface SjHksyDAO { /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sy * * @ibatorgenerated Wed Oct 26 19:22:44 CST 2016 */ int countByExample(SjHksyExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sy * * @ibatorgenerated Wed Oct 26 19:22:44 CST 2016 */ int deleteByExample(SjHksyExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sy * * @ibatorgenerated Wed Oct 26 19:22:44 CST 2016 */ int deleteByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sy * * @ibatorgenerated Wed Oct 26 19:22:44 CST 2016 */ void insert(SjHksy record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sy * * @ibatorgenerated Wed Oct 26 19:22:44 CST 2016 */ void insertSelective(SjHksy record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sy * * @ibatorgenerated Wed Oct 26 19:22:44 CST 2016 */ List selectByExample(SjHksyExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sy * * @ibatorgenerated Wed Oct 26 19:22:44 CST 2016 */ SjHksy selectByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sy * * @ibatorgenerated Wed Oct 26 19:22:44 CST 2016 */ int updateByExampleSelective(SjHksy record, SjHksyExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sy * * @ibatorgenerated Wed Oct 26 19:22:44 CST 2016 */ int updateByExample(SjHksy record, SjHksyExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sy * * @ibatorgenerated Wed Oct 26 19:22:44 CST 2016 */ int updateByPrimaryKeySelective(SjHksy record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_sy * * @ibatorgenerated Wed Oct 26 19:22:44 CST 2016 */ int updateByPrimaryKey(SjHksy record); /** * 获取最大记录时间 * @param paramMap * @return */ public Date selectHksyMaxtimeByParam(Map paramMap); /** * 插入数据 * @param paramMapList */ public void insertHksyByParam(List paramMapList); /** * 根据参数查询全程 * @param searchParam * @return */ public List selectQcsyByParam(Map searchParam); /** * 根据参数查询当天 * @param searchParam * @return */ public List selectDqsyByParam(Map searchParam); /** * 根据参数查询传感器 * @param searchParam * @return */ public List selectHksyCgqidByParam(Map searchParam); /** * 根据参数查询数据库中有无数据 * @param searchParam * @return */ public int selectHkSYTOFByParam(Map searchParam); }