123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- package com.huimv.xt.dao;
- import java.util.List;
- import java.util.Map;
- import com.huimv.xt.dataobject.XtJsqxExample;
- import com.huimv.xt.dataobject.XtJsqxKey;
- public interface XtJsqxDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_jsqx
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- int countByExample(XtJsqxExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_jsqx
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- int deleteByExample(XtJsqxExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_jsqx
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- int deleteByPrimaryKey(XtJsqxKey key);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_jsqx
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- void insert(XtJsqxKey record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_jsqx
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- void insertSelective(XtJsqxKey record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_jsqx
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- List<XtJsqxKey> selectByExample(XtJsqxExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_jsqx
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- int updateByExampleSelective(XtJsqxKey record, XtJsqxExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_jsqx
- *
- * @ibatorgenerated Thu Jul 10 14:38:31 CST 2014
- */
- int updateByExample(XtJsqxKey record, XtJsqxExample example);
-
- public List<XtJsqxKey> selectByParam(Map<String, Object> param);
- }
|