123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- package com.huimv.xx.dao;
- import com.huimv.busi.base.dto.ResponseBean;
- import com.huimv.web.base.PageBean;
- import com.huimv.xx.dataobject.XxXxtz;
- import com.huimv.xx.dataobject.XxXxtzExample;
- import java.util.List;
- import java.util.Map;
- public interface XxXxtzDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxtz
- *
- * @ibatorgenerated Fri Aug 08 15:20:55 CST 2014
- */
- int countByExample(XxXxtzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxtz
- *
- * @ibatorgenerated Fri Aug 08 15:20:55 CST 2014
- */
- int deleteByExample(XxXxtzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxtz
- *
- * @ibatorgenerated Fri Aug 08 15:20:55 CST 2014
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxtz
- *
- * @ibatorgenerated Fri Aug 08 15:20:55 CST 2014
- */
- void insert(XxXxtz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxtz
- *
- * @ibatorgenerated Fri Aug 08 15:20:55 CST 2014
- */
- void insertSelective(XxXxtz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxtz
- *
- * @ibatorgenerated Fri Aug 08 15:20:55 CST 2014
- */
- List<XxXxtz> selectByExampleWithBLOBs(XxXxtzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxtz
- *
- * @ibatorgenerated Fri Aug 08 15:20:55 CST 2014
- */
- List<XxXxtz> selectByExampleWithoutBLOBs(XxXxtzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxtz
- *
- * @ibatorgenerated Fri Aug 08 15:20:55 CST 2014
- */
- XxXxtz selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxtz
- *
- * @ibatorgenerated Fri Aug 08 15:20:55 CST 2014
- */
- int updateByExampleSelective(XxXxtz record, XxXxtzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxtz
- *
- * @ibatorgenerated Fri Aug 08 15:20:55 CST 2014
- */
- int updateByExampleWithBLOBs(XxXxtz record, XxXxtzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxtz
- *
- * @ibatorgenerated Fri Aug 08 15:20:55 CST 2014
- */
- int updateByExampleWithoutBLOBs(XxXxtz record, XxXxtzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxtz
- *
- * @ibatorgenerated Fri Aug 08 15:20:55 CST 2014
- */
- int updateByPrimaryKeySelective(XxXxtz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxtz
- *
- * @ibatorgenerated Fri Aug 08 15:20:55 CST 2014
- */
- int updateByPrimaryKeyWithBLOBs(XxXxtz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xxtz
- *
- * @ibatorgenerated Fri Aug 08 15:20:55 CST 2014
- */
- int updateByPrimaryKeyWithoutBLOBs(XxXxtz record);
-
- ResponseBean selectXxXxtzByParam(Map<String, Object> paramMap, PageBean pageBean) throws Exception;
-
- int getXxXxtzMaxId();
-
- /**
- * 获取发布时间合适的XtXxtz
- */
- public List<XxXxtz> selectXtXxtzFitTime(Map<String, Object> paramMap);
- }
|