123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120 |
- package com.huimv.sj.dao;
- import java.util.Date;
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
- import com.huimv.busi.tjt.dto.SjSdDTO;
- import com.huimv.busi.tjt.dto.SjhjkzDTO;
- import com.huimv.sj.dataobject.SjSshjkz;
- import com.huimv.sj.dataobject.SjSshjkzExample;
- public interface SjSshjkzDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_sshjkz
- *
- * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
- */
- int countByExample(SjSshjkzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_sshjkz
- *
- * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
- */
- int deleteByExample(SjSshjkzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_sshjkz
- *
- * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_sshjkz
- *
- * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
- */
- void insert(SjSshjkz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_sshjkz
- *
- * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
- */
- void insertSelective(SjSshjkz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_sshjkz
- *
- * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
- */
- List<SjSshjkz> selectByExample(SjSshjkzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_sshjkz
- *
- * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
- */
- SjSshjkz selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_sshjkz
- *
- * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
- */
- int updateByExampleSelective(SjSshjkz record, SjSshjkzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_sshjkz
- *
- * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
- */
- int updateByExample(SjSshjkz record, SjSshjkzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_sshjkz
- *
- * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
- */
- int updateByPrimaryKeySelective(SjSshjkz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_sshjkz
- *
- * @ibatorgenerated Sun Jun 29 20:51:17 CST 2014
- */
- int updateByPrimaryKey(SjSshjkz record);
-
- /**
- * 得到指定条件的环境控制记录的最大时间
- */
- public Date selectMaxSshjkzTimeByParam(Map<String, Object> searchParam);
-
- /**
- * 插入环境控制记录
- */
- public void insertSshjkzByParam(List<Map<String, Object>> paramMapList, HashMap<String, Object> hm);
-
- List<SjhjkzDTO> selectByParam(HashMap<String, Object> hm);
-
- int countSelectByParam(HashMap<String, Object> hm);
-
- @SuppressWarnings("rawtypes")
- public List<SjSdDTO> selectDqsdByParam(Map hm);
-
- public List<SjSdDTO> selectQcsdByLqid(Map<String, Object> searchParam);
- }
|