123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- package com.huimv.bjq.dao;
- import com.huimv.bjq.dataobject.BjqWd;
- import com.huimv.bjq.dataobject.BjqWdExample;
- import java.util.List;
- import java.util.Map;
- public interface BjqWdDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_wd
- *
- * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015
- */
- int countByExample(BjqWdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_wd
- *
- * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015
- */
- int deleteByExample(BjqWdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_wd
- *
- * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_wd
- *
- * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015
- */
- void insert(BjqWd record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_wd
- *
- * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015
- */
- void insertSelective(BjqWd record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_wd
- *
- * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015
- */
- List<BjqWd> selectByExample(BjqWdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_wd
- *
- * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015
- */
- BjqWd selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_wd
- *
- * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015
- */
- int updateByExampleSelective(BjqWd record, BjqWdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_wd
- *
- * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015
- */
- int updateByExample(BjqWd record, BjqWdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_wd
- *
- * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015
- */
- int updateByPrimaryKeySelective(BjqWd record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_wd
- *
- * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015
- */
- int updateByPrimaryKey(BjqWd record);
-
- int countBjqWdByParam(Map<String, Object> searchParam);
-
- List<BjqWd> selectBjqWdByParam(Map<String, Object> searchParam);
- }
|