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