123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- package com.huimv.xt.dao;
- import com.huimv.xt.dataobject.XtWxh;
- import com.huimv.xt.dataobject.XtWxhExample;
- import java.util.List;
- public interface XtWxhDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_wxh
- *
- * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
- */
- int countByExample(XtWxhExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_wxh
- *
- * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
- */
- int deleteByExample(XtWxhExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_wxh
- *
- * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
- */
- void insert(XtWxh record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_wxh
- *
- * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
- */
- void insertSelective(XtWxh record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_wxh
- *
- * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
- */
- List<XtWxh> selectByExample(XtWxhExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_wxh
- *
- * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
- */
- int updateByExampleSelective(XtWxh record, XtWxhExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_wxh
- *
- * @ibatorgenerated Thu Apr 02 13:48:41 CST 2015
- */
- int updateByExample(XtWxh record, XtWxhExample example);
- }
|