123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- package com.huimv.xx.dao;
- import com.huimv.xt.dataobject.XtWxh;
- import com.huimv.xx.dataobject.XxXxts;
- import com.huimv.xx.dataobject.XxXxtsExample;
- import java.util.List;
- import java.util.Map;
- public interface XxXxtsDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxts
- *
- * @ibatorgenerated Mon Apr 13 16:30:49 CST 2015
- */
- int countByExample(XxXxtsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxts
- *
- * @ibatorgenerated Mon Apr 13 16:30:49 CST 2015
- */
- int deleteByExample(XxXxtsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxts
- *
- * @ibatorgenerated Mon Apr 13 16:30:49 CST 2015
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxts
- *
- * @ibatorgenerated Mon Apr 13 16:30:49 CST 2015
- */
- void insert(XxXxts record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxts
- *
- * @ibatorgenerated Mon Apr 13 16:30:49 CST 2015
- */
- void insertSelective(XxXxts record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxts
- *
- * @ibatorgenerated Mon Apr 13 16:30:49 CST 2015
- */
- List<XxXxts> selectByExample(XxXxtsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxts
- *
- * @ibatorgenerated Mon Apr 13 16:30:49 CST 2015
- */
- XxXxts selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxts
- *
- * @ibatorgenerated Mon Apr 13 16:30:49 CST 2015
- */
- List<XtWxh> selectWxhByParam(Map<String, Object> paramMap);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxts
- *
- * @ibatorgenerated Mon Apr 13 16:30:49 CST 2015
- */
- int updateByExampleSelective(XxXxts record, XxXxtsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxts
- *
- * @ibatorgenerated Mon Apr 13 16:30:49 CST 2015
- */
- int updateByExample(XxXxts record, XxXxtsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxts
- *
- * @ibatorgenerated Mon Apr 13 16:30:49 CST 2015
- */
- int updateByPrimaryKeySelective(XxXxts record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxts
- *
- * @ibatorgenerated Mon Apr 13 16:30:49 CST 2015
- */
- int updateByPrimaryKey(XxXxts record);
-
- /**
- * 已读消息推送
- * @param paramMap
- * @return
- */
- public int countXxByParam(Map<String, Object> paramMap);
- public List<XxXxts> selectXxByParam(Map<String, Object> paramMap);
- public List<XxXxts> selectZyByParam(Map<String, Object> paramMap);
- public List<XxXxts> selectXxtsByParam(Map<String, Object> paramMap);
- public int countSbxxByParam(Map<String, Object> paramMap);
- }
|