123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- package com.huimv.da.dao;
- import java.util.List;
- import java.util.Map;
- import com.huimv.da.dataobject.DaZqls;
- import com.huimv.da.dataobject.DaZqlsExample;
- public interface DaZqlsDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zqls
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- int countByExample(DaZqlsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zqls
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- int deleteByExample(DaZqlsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zqls
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zqls
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- void insert(DaZqls record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zqls
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- void insertSelective(DaZqls record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zqls
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- List<DaZqls> selectByExample(DaZqlsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zqls
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- DaZqls selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zqls
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- int updateByExampleSelective(DaZqls record, DaZqlsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zqls
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- int updateByExample(DaZqls record, DaZqlsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zqls
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- int updateByPrimaryKeySelective(DaZqls record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table da_zqls
- *
- * @ibatorgenerated Mon Dec 14 09:21:56 CST 2015
- */
- int updateByPrimaryKey(DaZqls record);
-
- int countDaZqlsByParam(Map<String, Object> searchParam);
-
- List<DaZqls> selectDaZqlsByParam(Map<String, Object> searchParam);
- }
|