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 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 searchParam); List selectDaZqlsByParam(Map searchParam); }