123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- package com.huimv.xt.dao;
- import com.huimv.xt.dataobject.XtYxcsYa;
- import com.huimv.xt.dataobject.XtYxcsYaExample;
- import java.util.List;
- public interface XtYxcsYaDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs_bys_ya
- *
- * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
- */
- int countByExample(XtYxcsYaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs_bys_ya
- *
- * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
- */
- int deleteByExample(XtYxcsYaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs_bys_ya
- *
- * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs_bys_ya
- *
- * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
- */
- void insert(XtYxcsYa record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs_bys_ya
- *
- * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
- */
- void insertSelective(XtYxcsYa record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs_bys_ya
- *
- * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
- */
- List<XtYxcsYa> selectByExample(XtYxcsYaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs_bys_ya
- *
- * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
- */
- XtYxcsYa selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs_bys_ya
- *
- * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
- */
- int updateByExampleSelective(XtYxcsYa record, XtYxcsYaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs_bys_ya
- *
- * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
- */
- int updateByExample(XtYxcsYa record, XtYxcsYaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs_bys_ya
- *
- * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
- */
- int updateByPrimaryKeySelective(XtYxcsYa record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs_bys_ya
- *
- * @ibatorgenerated Fri Sep 08 13:22:44 CST 2017
- */
- int updateByPrimaryKey(XtYxcsYa record);
-
- /**
- * 批量作废
- */
- public void batchUpdateHkyxcsyaByList(List<XtYxcsYa> yxcsYaList);
- }
|