123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- package com.huimv.xt.dao;
- import com.huimv.xt.dataobject.XtCsjlyxcs;
- import com.huimv.xt.dataobject.XtCsjlyxcsExample;
- import java.util.List;
- import java.util.Map;
- public interface XtCsjlyxcsDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_csjlyxcs
- *
- * @ibatorgenerated Wed Aug 02 16:54:31 CST 2017
- */
- int countByExample(XtCsjlyxcsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_csjlyxcs
- *
- * @ibatorgenerated Wed Aug 02 16:54:31 CST 2017
- */
- int deleteByExample(XtCsjlyxcsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_csjlyxcs
- *
- * @ibatorgenerated Wed Aug 02 16:54:31 CST 2017
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_csjlyxcs
- *
- * @ibatorgenerated Wed Aug 02 16:54:31 CST 2017
- */
- void insert(XtCsjlyxcs record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_csjlyxcs
- *
- * @ibatorgenerated Wed Aug 02 16:54:31 CST 2017
- */
- void insertSelective(XtCsjlyxcs record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_csjlyxcs
- *
- * @ibatorgenerated Wed Aug 02 16:54:31 CST 2017
- */
- List<XtCsjlyxcs> selectByExample(XtCsjlyxcsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_csjlyxcs
- *
- * @ibatorgenerated Wed Aug 02 16:54:31 CST 2017
- */
- XtCsjlyxcs selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_csjlyxcs
- *
- * @ibatorgenerated Wed Aug 02 16:54:31 CST 2017
- */
- int updateByExampleSelective(XtCsjlyxcs record, XtCsjlyxcsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_csjlyxcs
- *
- * @ibatorgenerated Wed Aug 02 16:54:31 CST 2017
- */
- int updateByExample(XtCsjlyxcs record, XtCsjlyxcsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_csjlyxcs
- *
- * @ibatorgenerated Wed Aug 02 16:54:31 CST 2017
- */
- int updateByPrimaryKeySelective(XtCsjlyxcs record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_csjlyxcs
- *
- * @ibatorgenerated Wed Aug 02 16:54:31 CST 2017
- */
- int updateByPrimaryKey(XtCsjlyxcs record);
-
- int selecCsjlyxcsCountByParam(Map<String, Object> param);
-
- List<XtCsjlyxcs> selecCsjlyxcsByParam(Map<String, Object> param);
- }
|