123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- package com.huimv.sj.dao;
- import com.huimv.sj.dataobject.SjHkswsd;
- import com.huimv.sj.dataobject.SjHkswsdExample;
- import com.huimv.sj.dataobject.SjHkswwd;
- import java.util.List;
- import java.util.Map;
- public interface SjHkswsdDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_sw_sd
- *
- * @ibatorgenerated Wed Sep 20 15:19:33 CST 2017
- */
- int countByExample(SjHkswsdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_sw_sd
- *
- * @ibatorgenerated Wed Sep 20 15:19:33 CST 2017
- */
- int deleteByExample(SjHkswsdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_sw_sd
- *
- * @ibatorgenerated Wed Sep 20 15:19:33 CST 2017
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_sw_sd
- *
- * @ibatorgenerated Wed Sep 20 15:19:33 CST 2017
- */
- void insert(SjHkswsd record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_sw_sd
- *
- * @ibatorgenerated Wed Sep 20 15:19:33 CST 2017
- */
- void insertSelective(SjHkswsd record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_sw_sd
- *
- * @ibatorgenerated Wed Sep 20 15:19:33 CST 2017
- */
- List<SjHkswsd> selectByExample(SjHkswsdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_sw_sd
- *
- * @ibatorgenerated Wed Sep 20 15:19:33 CST 2017
- */
- SjHkswsd selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_sw_sd
- *
- * @ibatorgenerated Wed Sep 20 15:19:33 CST 2017
- */
- int updateByExampleSelective(SjHkswsd record, SjHkswsdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_sw_sd
- *
- * @ibatorgenerated Wed Sep 20 15:19:33 CST 2017
- */
- int updateByExample(SjHkswsd record, SjHkswsdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_sw_sd
- *
- * @ibatorgenerated Wed Sep 20 15:19:33 CST 2017
- */
- int updateByPrimaryKeySelective(SjHkswsd record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_hk_sw_sd
- *
- * @ibatorgenerated Wed Sep 20 15:19:33 CST 2017
- */
- int updateByPrimaryKey(SjHkswsd record);
-
- /**
- * 插入环控室外湿度
- */
- public void insertHkswsdByParam(List<SjHkswsd> paramMapList);
-
- /**
- * 查询一天环控湿度
- * @param hm
- * @return
- */
- public List<SjHkswsd> selectswsdByParam(Map<String, Object> param);
-
- /**
- * 查询全程环控湿度
- */
- public List<SjHkswsd> selectQcswsdByParam(Map<String, Object> param);
- }
|