123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- 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<DaDwda> 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<DaDwda> selectWfwByParam(Map<String, Object> paramMap);
-
- public int selectCountWfwByParam(Map<String, Object> paramMap);
- }
|