123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- package com.huimv.bjq.dao;
- import java.util.List;
- import java.util.Map;
- import com.huimv.bjq.dataobject.BjqTxmx;
- import com.huimv.bjq.dataobject.BjqTxmxExample;
- public interface BjqTxmxDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_txmx
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- int countByExample(BjqTxmxExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_txmx
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- int deleteByExample(BjqTxmxExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_txmx
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_txmx
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- void insert(BjqTxmx record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_txmx
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- void insertSelective(BjqTxmx record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_txmx
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- List<BjqTxmx> selectByExample(BjqTxmxExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_txmx
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- BjqTxmx selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_txmx
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- int updateByExampleSelective(BjqTxmx record, BjqTxmxExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_txmx
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- int updateByExample(BjqTxmx record, BjqTxmxExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_txmx
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- int updateByPrimaryKeySelective(BjqTxmx record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_txmx
- *
- * @ibatorgenerated Mon Jun 29 16:57:37 CST 2015
- */
- int updateByPrimaryKey(BjqTxmx record);
-
- int countBjqtxmxByParam(Map<String, Object> searchParam);
-
- List<BjqTxmx> selectBjqtxmxByParam(Map<String, Object> searchParam);
- }
|