1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- package com.huimv.xt.dao;
- import com.huimv.xt.dataobject.XtHzzd;
- import com.huimv.xt.dataobject.XtHzzdExample;
- import java.util.List;
- public interface XtHzzdDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hzzd
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- int countByExample(XtHzzdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hzzd
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- int deleteByExample(XtHzzdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hzzd
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- int deleteByPrimaryKey(Integer xh);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hzzd
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- void insert(XtHzzd record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hzzd
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- void insertSelective(XtHzzd record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hzzd
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- List<XtHzzd> selectByExample(XtHzzdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hzzd
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- XtHzzd selectByPrimaryKey(Integer xh);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hzzd
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- int updateByExampleSelective(XtHzzd record, XtHzzdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hzzd
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- int updateByExample(XtHzzd record, XtHzzdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hzzd
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- int updateByPrimaryKeySelective(XtHzzd record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hzzd
- *
- * @ibatorgenerated Wed Jun 04 12:11:08 CST 2014
- */
- int updateByPrimaryKey(XtHzzd record);
- }
|