123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- package com.huimv.xt.dao;
- import com.huimv.xt.dataobject.XtLsjl;
- import com.huimv.xt.dataobject.XtLsjlExample;
- import java.util.List;
- public interface XtLsjlDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_lsjl
- *
- * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
- */
- int countByExample(XtLsjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_lsjl
- *
- * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
- */
- int deleteByExample(XtLsjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_lsjl
- *
- * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_lsjl
- *
- * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
- */
- void insert(XtLsjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_lsjl
- *
- * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
- */
- void insertSelective(XtLsjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_lsjl
- *
- * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
- */
- List<XtLsjl> selectByExampleWithBLOBs(XtLsjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_lsjl
- *
- * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
- */
- List<XtLsjl> selectByExampleWithoutBLOBs(XtLsjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_lsjl
- *
- * @ibatorgenerated Tue Dec 09 09:03:40 CST 2014
- */
- XtLsjl selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_lsjl
- *
- * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
- */
- int updateByExampleSelective(XtLsjl record, XtLsjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_lsjl
- *
- * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
- */
- int updateByExampleWithBLOBs(XtLsjl record, XtLsjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_lsjl
- *
- * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
- */
- int updateByExampleWithoutBLOBs(XtLsjl record, XtLsjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_lsjl
- *
- * @ibatorgenerated Tue Dec 09 09:03:40 CST 2014
- */
- int updateByPrimaryKeySelective(XtLsjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_lsjl
- *
- * @ibatorgenerated Thu Aug 28 10:31:04 CST 2014
- */
- int updateByPrimaryKeyWithBLOBs(XtLsjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_lsjl
- *
- * @ibatorgenerated Tue Dec 09 09:03:40 CST 2014
- */
- int updateByPrimaryKeyWithoutBLOBs(XtLsjl record);
- }
|