123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- package com.huimv.xt.dao;
- import com.huimv.busi.base.dto.ResponseBean;
- import com.huimv.web.base.PageBean;
- import com.huimv.xt.dataobject.XtBbxx;
- import com.huimv.xt.dataobject.XtBbxxExample;
- import java.util.List;
- import java.util.Map;
- public interface XtBbxxDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_bbxx
- *
- * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
- */
- int countByExample(XtBbxxExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_bbxx
- *
- * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
- */
- int deleteByExample(XtBbxxExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_bbxx
- *
- * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_bbxx
- *
- * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
- */
- void insert(XtBbxx record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_bbxx
- *
- * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
- */
- void insertSelective(XtBbxx record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_bbxx
- *
- * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
- */
- List<XtBbxx> selectByExampleWithBLOBs(XtBbxxExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_bbxx
- *
- * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
- */
- List<XtBbxx> selectByExampleWithoutBLOBs(XtBbxxExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_bbxx
- *
- * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
- */
- XtBbxx selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_bbxx
- *
- * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
- */
- int updateByExampleSelective(XtBbxx record, XtBbxxExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_bbxx
- *
- * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
- */
- int updateByExampleWithBLOBs(XtBbxx record, XtBbxxExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_bbxx
- *
- * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
- */
- int updateByExampleWithoutBLOBs(XtBbxx record, XtBbxxExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_bbxx
- *
- * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
- */
- int updateByPrimaryKeySelective(XtBbxx record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_bbxx
- *
- * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
- */
- int updateByPrimaryKeyWithBLOBs(XtBbxx record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_bbxx
- *
- * @ibatorgenerated Mon Aug 11 14:03:13 CST 2014
- */
- int updateByPrimaryKeyWithoutBLOBs(XtBbxx record);
-
- ResponseBean selectXtBbxxByParam(Map<String, Object> paramMap, PageBean pageBean) throws Exception;
-
- public XtBbxx selectXtBbxxByMaxFbsj(Map<String, Object> map) throws Exception;
- }
|