123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- package com.huimv.sj.dao;
- import com.huimv.sj.dataobject.SjQtzb;
- import com.huimv.sj.dataobject.SjQtzbExample;
- import java.util.List;
- import java.util.Map;
- public interface SjQtzbDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qtzb
- *
- * @ibatorgenerated Fri Aug 08 21:24:32 CST 2014
- */
- int countByExample(SjQtzbExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qtzb
- *
- * @ibatorgenerated Fri Aug 08 21:24:32 CST 2014
- */
- int deleteByExample(SjQtzbExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qtzb
- *
- * @ibatorgenerated Fri Aug 08 21:24:32 CST 2014
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qtzb
- *
- * @ibatorgenerated Fri Aug 08 21:24:32 CST 2014
- */
- void insert(SjQtzb record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qtzb
- *
- * @ibatorgenerated Fri Aug 08 21:24:32 CST 2014
- */
- void insertSelective(SjQtzb record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qtzb
- *
- * @ibatorgenerated Fri Aug 08 21:24:32 CST 2014
- */
- List<SjQtzb> selectByExample(SjQtzbExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qtzb
- *
- * @ibatorgenerated Fri Aug 08 21:24:32 CST 2014
- */
- SjQtzb selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qtzb
- *
- * @ibatorgenerated Fri Aug 08 21:24:32 CST 2014
- */
- int updateByExampleSelective(SjQtzb record, SjQtzbExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qtzb
- *
- * @ibatorgenerated Fri Aug 08 21:24:32 CST 2014
- */
- int updateByExample(SjQtzb record, SjQtzbExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qtzb
- *
- * @ibatorgenerated Fri Aug 08 21:24:32 CST 2014
- */
- int updateByPrimaryKeySelective(SjQtzb record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_qtzb
- *
- * @ibatorgenerated Fri Aug 08 21:24:32 CST 2014
- */
- int updateByPrimaryKey(SjQtzb record);
-
- public List<SjQtzb> selectQcqtzbByLqid(Map<String, Object> hm);
-
- public List<SjQtzb> selectMtqtzbByParam(Map hm);
- }
|