123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- package com.huimv.xt.dao;
- import com.huimv.xt.dataobject.XtFlzzd;
- import com.huimv.xt.dataobject.XtFlzzdExample;
- import java.util.List;
- import java.util.Map;
- public interface XtFlzzdDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_flzzd
- *
- * @ibatorgenerated Thu Aug 07 14:29:58 CST 2014
- */
- int countByExample(XtFlzzdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_flzzd
- *
- * @ibatorgenerated Thu Aug 07 14:29:58 CST 2014
- */
- int deleteByExample(XtFlzzdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_flzzd
- *
- * @ibatorgenerated Thu Aug 07 14:29:58 CST 2014
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_flzzd
- *
- * @ibatorgenerated Thu Aug 07 14:29:58 CST 2014
- */
- void insert(XtFlzzd record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_flzzd
- *
- * @ibatorgenerated Thu Aug 07 14:29:58 CST 2014
- */
- void insertSelective(XtFlzzd record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_flzzd
- *
- * @ibatorgenerated Thu Aug 07 14:29:58 CST 2014
- */
- List<XtFlzzd> selectByExample(XtFlzzdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_flzzd
- *
- * @ibatorgenerated Thu Aug 07 14:29:58 CST 2014
- */
- XtFlzzd selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_flzzd
- *
- * @ibatorgenerated Thu Aug 07 14:29:58 CST 2014
- */
- int updateByExampleSelective(XtFlzzd record, XtFlzzdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_flzzd
- *
- * @ibatorgenerated Thu Aug 07 14:29:58 CST 2014
- */
- int updateByExample(XtFlzzd record, XtFlzzdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_flzzd
- *
- * @ibatorgenerated Thu Aug 07 14:29:58 CST 2014
- */
- int updateByPrimaryKeySelective(XtFlzzd record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_flzzd
- *
- * @ibatorgenerated Thu Aug 07 14:29:58 CST 2014
- */
- int updateByPrimaryKey(XtFlzzd record);
-
- int countXtFlzzdByParam(Map<String, Object> searchParam);
-
- List<XtFlzzd> getXtFlzzdListByParam(Map<String, Object> searchParam);
- }
|