123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- package com.huimv.bjq.dao;
- import java.util.List;
- import java.util.Map;
- import com.huimv.bjq.dataobject.BjqCssz;
- import com.huimv.bjq.dataobject.BjqCsszExample;
- public interface BjqCsszDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_cssz
- *
- * @ibatorgenerated Fri Jun 26 10:11:47 CST 2015
- */
- int countByExample(BjqCsszExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_cssz
- *
- * @ibatorgenerated Fri Jun 26 10:11:47 CST 2015
- */
- int deleteByExample(BjqCsszExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_cssz
- *
- * @ibatorgenerated Fri Jun 26 10:11:47 CST 2015
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_cssz
- *
- * @ibatorgenerated Fri Jun 26 10:11:47 CST 2015
- */
- void insert(BjqCssz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_cssz
- *
- * @ibatorgenerated Fri Jun 26 10:11:47 CST 2015
- */
- void insertSelective(BjqCssz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_cssz
- *
- * @ibatorgenerated Fri Jun 26 10:11:47 CST 2015
- */
- List<BjqCssz> selectByExample(BjqCsszExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_cssz
- *
- * @ibatorgenerated Fri Jun 26 10:11:47 CST 2015
- */
- BjqCssz selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_cssz
- *
- * @ibatorgenerated Fri Jun 26 10:11:47 CST 2015
- */
- int updateByExampleSelective(BjqCssz record, BjqCsszExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_cssz
- *
- * @ibatorgenerated Fri Jun 26 10:11:47 CST 2015
- */
- int updateByExample(BjqCssz record, BjqCsszExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_cssz
- *
- * @ibatorgenerated Fri Jun 26 10:11:47 CST 2015
- */
- int updateByPrimaryKeySelective(BjqCssz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table bjq_cssz
- *
- * @ibatorgenerated Fri Jun 26 10:11:47 CST 2015
- */
- int updateByPrimaryKey(BjqCssz record);
-
- int countBjqCsszByParam(Map<String, Object> searchParam);
-
- List<BjqCssz> selectBjqCsszByParam(Map<String, Object> searchParam);
-
- List<BjqCssz> selectBjqCsszByParam2(Map<String, Object> searchParam);
- }
|