123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- package com.huimv.xx.dao;
- import com.huimv.busi.base.dto.ResponseBean;
- import com.huimv.web.base.PageBean;
- import com.huimv.xx.dataobject.XxXwfb;
- import com.huimv.xx.dataobject.XxXwfbExample;
- import java.util.List;
- import java.util.Map;
- public interface XxXwfbDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xwfb
- *
- * @ibatorgenerated Wed Jun 18 09:54:04 CST 2014
- */
- int countByExample(XxXwfbExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xwfb
- *
- * @ibatorgenerated Wed Jun 18 09:54:04 CST 2014
- */
- int deleteByExample(XxXwfbExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xwfb
- *
- * @ibatorgenerated Wed Jun 18 09:54:04 CST 2014
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xwfb
- *
- * @ibatorgenerated Wed Jun 18 09:54:04 CST 2014
- */
- void insert(XxXwfb record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xwfb
- *
- * @ibatorgenerated Wed Jun 18 09:54:04 CST 2014
- */
- void insertSelective(XxXwfb record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xwfb
- *
- * @ibatorgenerated Wed Jun 18 09:54:04 CST 2014
- */
- List<XxXwfb> selectByExampleWithBLOBs(XxXwfbExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xwfb
- *
- * @ibatorgenerated Wed Jun 18 09:54:04 CST 2014
- */
- List<XxXwfb> selectByExampleWithoutBLOBs(XxXwfbExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xwfb
- *
- * @ibatorgenerated Wed Jun 18 09:54:04 CST 2014
- */
- XxXwfb selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xwfb
- *
- * @ibatorgenerated Wed Jun 18 09:54:04 CST 2014
- */
- int updateByExampleSelective(XxXwfb record, XxXwfbExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xwfb
- *
- * @ibatorgenerated Wed Jun 18 09:54:04 CST 2014
- */
- int updateByExampleWithBLOBs(XxXwfb record, XxXwfbExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xwfb
- *
- * @ibatorgenerated Wed Jun 18 09:54:04 CST 2014
- */
- int updateByExampleWithoutBLOBs(XxXwfb record, XxXwfbExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xwfb
- *
- * @ibatorgenerated Wed Jun 18 09:54:04 CST 2014
- */
- int updateByPrimaryKeySelective(XxXwfb record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xwfb
- *
- * @ibatorgenerated Wed Jun 18 09:54:04 CST 2014
- */
- int updateByPrimaryKeyWithBLOBs(XxXwfb record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xx_xwfb
- *
- * @ibatorgenerated Wed Jun 18 09:54:04 CST 2014
- */
- int updateByPrimaryKeyWithoutBLOBs(XxXwfb record);
-
- ResponseBean selectXxXwfbByParam(Map<String, Object> paramMap, PageBean pageBean) throws Exception;
-
- int getXxXwfbMaxId();
- }
|