123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- package com.huimv.xt.dao;
- import com.huimv.xt.dataobject.XtCzrz;
- import com.huimv.xt.dataobject.XtCzrzExample;
- import java.util.List;
- public interface XtCzrzDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_czrz
- *
- * @ibatorgenerated Tue Nov 25 15:44:50 CST 2014
- */
- int countByExample(XtCzrzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_czrz
- *
- * @ibatorgenerated Tue Nov 25 15:44:50 CST 2014
- */
- int deleteByExample(XtCzrzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_czrz
- *
- * @ibatorgenerated Tue Nov 25 15:44:50 CST 2014
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_czrz
- *
- * @ibatorgenerated Tue Nov 25 15:44:50 CST 2014
- */
- void insert(XtCzrz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_czrz
- *
- * @ibatorgenerated Tue Nov 25 15:44:50 CST 2014
- */
- void insertSelective(XtCzrz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_czrz
- *
- * @ibatorgenerated Tue Nov 25 15:44:50 CST 2014
- */
- List<XtCzrz> selectByExample(XtCzrzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_czrz
- *
- * @ibatorgenerated Tue Nov 25 15:44:50 CST 2014
- */
- XtCzrz selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_czrz
- *
- * @ibatorgenerated Tue Nov 25 15:44:50 CST 2014
- */
- int updateByExampleSelective(XtCzrz record, XtCzrzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_czrz
- *
- * @ibatorgenerated Tue Nov 25 15:44:50 CST 2014
- */
- int updateByExample(XtCzrz record, XtCzrzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_czrz
- *
- * @ibatorgenerated Tue Nov 25 15:44:50 CST 2014
- */
- int updateByPrimaryKeySelective(XtCzrz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_czrz
- *
- * @ibatorgenerated Tue Nov 25 15:44:50 CST 2014
- */
- int updateByPrimaryKey(XtCzrz record);
-
- int countCzrzByExample(XtCzrzExample example);
-
- List<XtCzrz> selectCzrzByExample(XtCzrzExample example);
- }
|