123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- package com.huimv.da.dao;
- import com.huimv.da.dataobject.DaMydj;
- import com.huimv.da.dataobject.DaMydjExample;
- import java.util.List;
- import java.util.Map;
- public interface DaMydjDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_mydj
- *
- * @ibatorgenerated Fri Dec 04 12:40:36 CST 2015
- */
- int countByExample(DaMydjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_mydj
- *
- * @ibatorgenerated Fri Dec 04 12:40:36 CST 2015
- */
- int deleteByExample(DaMydjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_mydj
- *
- * @ibatorgenerated Fri Dec 04 12:40:36 CST 2015
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_mydj
- *
- * @ibatorgenerated Fri Dec 04 12:40:36 CST 2015
- */
- void insert(DaMydj record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_mydj
- *
- * @ibatorgenerated Fri Dec 04 12:40:36 CST 2015
- */
- void insertSelective(DaMydj record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_mydj
- *
- * @ibatorgenerated Fri Dec 04 12:40:36 CST 2015
- */
- List<DaMydj> selectByExample(DaMydjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_mydj
- *
- * @ibatorgenerated Fri Dec 04 12:40:36 CST 2015
- */
- DaMydj selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_mydj
- *
- * @ibatorgenerated Fri Dec 04 12:40:36 CST 2015
- */
- int updateByExampleSelective(DaMydj record, DaMydjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_mydj
- *
- * @ibatorgenerated Fri Dec 04 12:40:36 CST 2015
- */
- int updateByExample(DaMydj record, DaMydjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_mydj
- *
- * @ibatorgenerated Fri Dec 04 12:40:36 CST 2015
- */
- int updateByPrimaryKeySelective(DaMydj record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_mydj
- *
- * @ibatorgenerated Fri Dec 04 12:40:36 CST 2015
- */
- int updateByPrimaryKey(DaMydj record);
-
- int countDaMydjByParam(Map<String, Object> searchParam);
-
- List<DaMydj> selectDaMydjByParam(Map<String, Object> searchParam);
- }
|