package com.huimv.bjq.dao; import com.huimv.bjq.dataobject.BjqWd; import com.huimv.bjq.dataobject.BjqWdExample; import java.util.List; import java.util.Map; public interface BjqWdDAO { /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table bjq_wd * * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015 */ int countByExample(BjqWdExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table bjq_wd * * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015 */ int deleteByExample(BjqWdExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table bjq_wd * * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015 */ int deleteByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table bjq_wd * * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015 */ void insert(BjqWd record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table bjq_wd * * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015 */ void insertSelective(BjqWd record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table bjq_wd * * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015 */ List selectByExample(BjqWdExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table bjq_wd * * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015 */ BjqWd selectByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table bjq_wd * * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015 */ int updateByExampleSelective(BjqWd record, BjqWdExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table bjq_wd * * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015 */ int updateByExample(BjqWd record, BjqWdExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table bjq_wd * * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015 */ int updateByPrimaryKeySelective(BjqWd record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table bjq_wd * * @ibatorgenerated Tue Jun 23 15:33:09 CST 2015 */ int updateByPrimaryKey(BjqWd record); int countBjqWdByParam(Map searchParam); List selectBjqWdByParam(Map searchParam); }