123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- package com.huimv.sj.dao;
- import com.huimv.sj.dataobject.SjSsqtjc;
- import com.huimv.sj.dataobject.SjSsqtjcExample;
- import java.util.Date;
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
- public interface SjSsqtjcDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ssqtjc
- *
- * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
- */
- int countByExample(SjSsqtjcExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ssqtjc
- *
- * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
- */
- int deleteByExample(SjSsqtjcExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ssqtjc
- *
- * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ssqtjc
- *
- * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
- */
- void insert(SjSsqtjc record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ssqtjc
- *
- * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
- */
- void insertSelective(SjSsqtjc record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ssqtjc
- *
- * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
- */
- List<SjSsqtjc> selectByExample(SjSsqtjcExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ssqtjc
- *
- * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
- */
- SjSsqtjc selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ssqtjc
- *
- * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
- */
- int updateByExampleSelective(SjSsqtjc record, SjSsqtjcExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ssqtjc
- *
- * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
- */
- int updateByExample(SjSsqtjc record, SjSsqtjcExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ssqtjc
- *
- * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
- */
- int updateByPrimaryKeySelective(SjSsqtjc record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ssqtjc
- *
- * @ibatorgenerated Thu Jul 31 12:39:05 CST 2014
- */
- int updateByPrimaryKey(SjSsqtjc record);
-
- /**
- * 获取气体检测记录最大时间
- */
- public Date selectMaxSsqtjcTimeByParam(Map<String, Object> searchParam);
-
- /**
- * 插入实时气体检测记录
- */
- public void insertSsqtjcByParam(List<Map<String, Object>> paramMapList, HashMap<String, Object> hm);
- }
|