package com.huimv.da.dao; import java.util.List; import java.util.Map; import com.huimv.da.dataobject.DaDwda; import com.huimv.da.dataobject.DaDwdaExample; public interface DaDwdaDAO { /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_dwda * * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015 */ int countByExample(DaDwdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_dwda * * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015 */ int deleteByExample(DaDwdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_dwda * * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015 */ int deleteByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_dwda * * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015 */ void insert(DaDwda record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_dwda * * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015 */ void insertSelective(DaDwda record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_dwda * * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015 */ List selectByExample(DaDwdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_dwda * * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015 */ DaDwda selectByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_dwda * * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015 */ int updateByExampleSelective(DaDwda record, DaDwdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_dwda * * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015 */ int updateByExample(DaDwda record, DaDwdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_dwda * * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015 */ int updateByPrimaryKeySelective(DaDwda record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table da_dwda * * @ibatorgenerated Wed Nov 25 12:56:38 CST 2015 */ int updateByPrimaryKey(DaDwda record); /** * 查询一定时间内的未访问数 * @param paramMap * @return */ List selectWfwByParam(Map paramMap); public int selectCountWfwByParam(Map paramMap); }