package com.huimv.sj.dao; import java.util.Date; import java.util.List; import java.util.Map; import com.huimv.sj.dataobject.SjHkdn; import com.huimv.sj.dataobject.SjHkdnExample; public interface SjHkdnDAO { /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dn * * @ibatorgenerated Thu Oct 27 14:01:58 CST 2016 */ int countByExample(SjHkdnExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dn * * @ibatorgenerated Thu Oct 27 14:01:58 CST 2016 */ int deleteByExample(SjHkdnExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dn * * @ibatorgenerated Thu Oct 27 14:01:58 CST 2016 */ int deleteByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dn * * @ibatorgenerated Thu Oct 27 14:01:58 CST 2016 */ void insert(SjHkdn record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dn * * @ibatorgenerated Thu Oct 27 14:01:58 CST 2016 */ void insertSelective(SjHkdn record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dn * * @ibatorgenerated Thu Oct 27 14:01:58 CST 2016 */ List selectByExample(SjHkdnExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dn * * @ibatorgenerated Thu Oct 27 14:01:58 CST 2016 */ SjHkdn selectByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dn * * @ibatorgenerated Thu Oct 27 14:01:58 CST 2016 */ int updateByExampleSelective(SjHkdn record, SjHkdnExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dn * * @ibatorgenerated Thu Oct 27 14:01:58 CST 2016 */ int updateByExample(SjHkdn record, SjHkdnExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dn * * @ibatorgenerated Thu Oct 27 14:01:58 CST 2016 */ int updateByPrimaryKeySelective(SjHkdn record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sj_hk_dn * * @ibatorgenerated Thu Oct 27 14:01:58 CST 2016 */ int updateByPrimaryKey(SjHkdn record); /** * 获取最大记录时间 * @param paramMap * @return */ public Date selectHkdnMaxtimeByParam(Map paramMap); /** * 插入数据 * @param paramMapList */ public void insertHkdnByParam(List paramMapList); /** * 根据参数查询全程 * @param searchParam * @return */ public List selectQcdnByParam(Map searchParam); /** * 根据参数查询当天 * @param searchParam * @return */ public List selectDqdnByParam(Map searchParam); /** * 根据参数查询传感器 * @param searchParam * @return */ public List selectHkdnCgqidByParam(Map searchParam); }