123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- package com.huimv.da.dao;
- import java.util.List;
- import java.util.Map;
- import com.huimv.da.dataobject.DaJbdj;
- import com.huimv.da.dataobject.DaJbdjExample;
- public interface DaJbdjDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_jbdj
- *
- * @ibatorgenerated Sat Dec 05 10:27:39 CST 2015
- */
- int countByExample(DaJbdjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_jbdj
- *
- * @ibatorgenerated Sat Dec 05 10:27:39 CST 2015
- */
- int deleteByExample(DaJbdjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_jbdj
- *
- * @ibatorgenerated Sat Dec 05 10:27:39 CST 2015
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_jbdj
- *
- * @ibatorgenerated Sat Dec 05 10:27:39 CST 2015
- */
- void insert(DaJbdj record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_jbdj
- *
- * @ibatorgenerated Sat Dec 05 10:27:39 CST 2015
- */
- void insertSelective(DaJbdj record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_jbdj
- *
- * @ibatorgenerated Sat Dec 05 10:27:39 CST 2015
- */
- List<DaJbdj> selectByExample(DaJbdjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_jbdj
- *
- * @ibatorgenerated Sat Dec 05 10:27:39 CST 2015
- */
- DaJbdj selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_jbdj
- *
- * @ibatorgenerated Sat Dec 05 10:27:39 CST 2015
- */
- int updateByExampleSelective(DaJbdj record, DaJbdjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_jbdj
- *
- * @ibatorgenerated Sat Dec 05 10:27:39 CST 2015
- */
- int updateByExample(DaJbdj record, DaJbdjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_jbdj
- *
- * @ibatorgenerated Sat Dec 05 10:27:39 CST 2015
- */
- int updateByPrimaryKeySelective(DaJbdj record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_jbdj
- *
- * @ibatorgenerated Sat Dec 05 10:27:39 CST 2015
- */
- int updateByPrimaryKey(DaJbdj record);
-
- int countDaJbdjByParam(Map<String, Object> searchParam);
-
- List<DaJbdj> selectDaJbdjByParam(Map<String, Object> searchParam);
- }
|