package com.huimv.da.dao; import com.huimv.busi.base.dto.ResponseBean; import com.huimv.da.dataobject.DaSlda; import com.huimv.da.dataobject.DaSldaExample; import com.huimv.web.base.PageBean; import java.util.List; import java.util.Map; public interface DaSldaDAO { /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ int countByExample(DaSldaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ int deleteByExample(DaSldaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ int deleteByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ void insert(DaSlda record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ void insertSelective(DaSlda record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ List selectByExample(DaSldaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ DaSlda selectByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ int updateByExampleSelective(DaSlda record, DaSldaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ int updateByExample(DaSlda record, DaSldaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ int updateByPrimaryKeySelective(DaSlda record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_slda * * @ibatorgenerated Wed Jul 16 08:42:59 CST 2014 */ int updateByPrimaryKey(DaSlda record); ResponseBean selectDaSldaByParam(Map paramMap, PageBean pageBean) throws Exception; }