123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- package com.huimv.xx.dao;
- import com.huimv.xx.dataobject.XxGttsjl;
- import com.huimv.xx.dataobject.XxGttsjlExample;
- import java.util.List;
- import java.util.Map;
- public interface XxGttsjlDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_gttsjl
- *
- * @ibatorgenerated Fri Mar 18 11:07:01 CST 2016
- */
- int countByExample(XxGttsjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_gttsjl
- *
- * @ibatorgenerated Fri Mar 18 11:07:01 CST 2016
- */
- int deleteByExample(XxGttsjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_gttsjl
- *
- * @ibatorgenerated Fri Mar 18 11:07:01 CST 2016
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_gttsjl
- *
- * @ibatorgenerated Fri Mar 18 11:07:01 CST 2016
- */
- void insert(XxGttsjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_gttsjl
- *
- * @ibatorgenerated Fri Mar 18 11:07:01 CST 2016
- */
- void insertSelective(XxGttsjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_gttsjl
- *
- * @ibatorgenerated Fri Mar 18 11:07:01 CST 2016
- */
- List<XxGttsjl> selectByExample(XxGttsjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_gttsjl
- *
- * @ibatorgenerated Fri Mar 18 11:07:01 CST 2016
- */
- XxGttsjl selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_gttsjl
- *
- * @ibatorgenerated Fri Mar 18 11:07:01 CST 2016
- */
- int updateByExampleSelective(XxGttsjl record, XxGttsjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_gttsjl
- *
- * @ibatorgenerated Fri Mar 18 11:07:01 CST 2016
- */
- int updateByExample(XxGttsjl record, XxGttsjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_gttsjl
- *
- * @ibatorgenerated Fri Mar 18 11:07:01 CST 2016
- */
- int updateByPrimaryKeySelective(XxGttsjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_gttsjl
- *
- * @ibatorgenerated Fri Mar 18 11:07:01 CST 2016
- */
- int updateByPrimaryKey(XxGttsjl record);
-
- /**
- * 根据参数获取推送数
- * @param paramMap
- * @return
- */
- public int countGttsByParam(Map<String, Object> paramMap);
-
- /**
- * 更新点击
- * @param xxid
- */
- public void updateClicknumByXxid(int xxid);
- }
|