package com.huimv.da.dao; import com.huimv.busi.base.dto.ResponseBean; import com.huimv.da.dataobject.DaMcda; import com.huimv.da.dataobject.DaMcdaExample; import com.huimv.web.base.PageBean; import java.util.List; import java.util.Map; public interface DaMcdaDAO { /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_mcda * * @ibatorgenerated Fri May 23 16:56:30 CST 2014 */ int countByExample(DaMcdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_mcda * * @ibatorgenerated Fri May 23 16:56:30 CST 2014 */ int deleteByExample(DaMcdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_mcda * * @ibatorgenerated Fri May 23 16:56:30 CST 2014 */ int deleteByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_mcda * * @ibatorgenerated Fri May 23 16:56:30 CST 2014 */ void insert(DaMcda record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_mcda * * @ibatorgenerated Fri May 23 16:56:30 CST 2014 */ void insertSelective(DaMcda record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_mcda * * @ibatorgenerated Fri May 23 16:56:30 CST 2014 */ List selectByExample(DaMcdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_mcda * * @ibatorgenerated Fri May 23 16:56:30 CST 2014 */ DaMcda selectByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_mcda * * @ibatorgenerated Fri May 23 16:56:30 CST 2014 */ int updateByExampleSelective(DaMcda record, DaMcdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_mcda * * @ibatorgenerated Fri May 23 16:56:30 CST 2014 */ int updateByExample(DaMcda record, DaMcdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_mcda * * @ibatorgenerated Fri May 23 16:56:30 CST 2014 */ int updateByPrimaryKeySelective(DaMcda record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_mcda * * @ibatorgenerated Fri May 23 16:56:30 CST 2014 */ int updateByPrimaryKey(DaMcda record); ResponseBean selectDaMcdaByParam(Map paramMap, PageBean pageBean) throws Exception; }