123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- package com.huimv.sj.dao;
- import com.huimv.sj.dataobject.SjWbhj;
- import com.huimv.sj.dataobject.SjWbhjExample;
- import java.util.Date;
- import java.util.List;
- import java.util.Map;
- public interface SjWbhjDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_wbhj
- *
- * @ibatorgenerated Tue Nov 10 13:30:52 CST 2015
- */
- int countByExample(SjWbhjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_wbhj
- *
- * @ibatorgenerated Tue Nov 10 13:30:52 CST 2015
- */
- int deleteByExample(SjWbhjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_wbhj
- *
- * @ibatorgenerated Tue Nov 10 13:30:52 CST 2015
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_wbhj
- *
- * @ibatorgenerated Tue Nov 10 13:30:52 CST 2015
- */
- void insert(SjWbhj record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_wbhj
- *
- * @ibatorgenerated Tue Nov 10 13:30:52 CST 2015
- */
- void insertSelective(SjWbhj record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_wbhj
- *
- * @ibatorgenerated Tue Nov 10 13:30:52 CST 2015
- */
- List<SjWbhj> selectByExample(SjWbhjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_wbhj
- *
- * @ibatorgenerated Tue Nov 10 13:30:52 CST 2015
- */
- SjWbhj selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_wbhj
- *
- * @ibatorgenerated Tue Nov 10 13:30:52 CST 2015
- */
- int updateByExampleSelective(SjWbhj record, SjWbhjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_wbhj
- *
- * @ibatorgenerated Tue Nov 10 13:30:52 CST 2015
- */
- int updateByExample(SjWbhj record, SjWbhjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_wbhj
- *
- * @ibatorgenerated Tue Nov 10 13:30:52 CST 2015
- */
- int updateByPrimaryKeySelective(SjWbhj record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_wbhj
- *
- * @ibatorgenerated Tue Nov 10 13:30:52 CST 2015
- */
- int updateByPrimaryKey(SjWbhj record);
-
- Date selectMaxtimeByParam(Map<String, Object> param);
- void insertWbhjListByParam(List<Map<String, Object>> paramMapList);
-
- List<SjWbhj> selectWbhjWdByParam(Map<String, Object> param);
-
- List<SjWbhj> selectWbhjSdByParam(Map<String, Object> param);
-
- List<SjWbhj> selectWbhjQcwdByParam(Map<String, Object> param);
-
- List<SjWbhj> selectWbhjQcsdByParam(Map<String, Object> param);
- }
|