package com.huimv.sj.dao; import java.util.Date; import java.util.List; import java.util.Map; import com.huimv.sj.dataobject.SjHkph; import com.huimv.sj.dataobject.SjHkphExample; public interface SjHkphDAO { /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_ph * * @ibatorgenerated Wed Sep 21 13:58:52 CST 2016 */ int countByExample(SjHkphExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_ph * * @ibatorgenerated Wed Sep 21 13:58:52 CST 2016 */ int deleteByExample(SjHkphExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_ph * * @ibatorgenerated Wed Sep 21 13:58:52 CST 2016 */ int deleteByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_ph * * @ibatorgenerated Wed Sep 21 13:58:52 CST 2016 */ void insert(SjHkph record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_ph * * @ibatorgenerated Wed Sep 21 13:58:52 CST 2016 */ void insertSelective(SjHkph record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_ph * * @ibatorgenerated Wed Sep 21 13:58:52 CST 2016 */ List selectByExample(SjHkphExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_ph * * @ibatorgenerated Wed Sep 21 13:58:52 CST 2016 */ SjHkph selectByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_ph * * @ibatorgenerated Wed Sep 21 13:58:52 CST 2016 */ int updateByExampleSelective(SjHkph record, SjHkphExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_ph * * @ibatorgenerated Wed Sep 21 13:58:52 CST 2016 */ int updateByExample(SjHkph record, SjHkphExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_ph * * @ibatorgenerated Wed Sep 21 13:58:52 CST 2016 */ int updateByPrimaryKeySelective(SjHkph record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_ph * * @ibatorgenerated Wed Sep 21 13:58:52 CST 2016 */ int updateByPrimaryKey(SjHkph record); /** * 获取最大记录时间 * @param paramMap * @return */ public Date selectHkphMaxtimeByParam(Map paramMap); /** * 插入数据 * @param paramMapList */ public void insertHkphByParam(List paramMapList); /** * 根据参数查询全程 * @param searchParam * @return */ public List selectQcphByParam(Map searchParam); /** * 根据参数查询当天 * @param searchParam * @return */ public List selectDqphByParam(Map searchParam); /** * 根据参数查询传感器 * @param searchParam * @return */ public List selectHkphCgqidByParam(Map searchParam); }