123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- package com.huimv.xt.dao;
- import java.util.List;
- import java.util.Map;
- import com.huimv.xt.dataobject.XtHkyxcs;
- import com.huimv.xt.dataobject.XtHkyxcsExample;
- public interface XtHkyxcsDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs
- *
- * @ibatorgenerated Fri Jan 01 20:06:02 CST 2016
- */
- int countByExample(XtHkyxcsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs
- *
- * @ibatorgenerated Fri Jan 01 20:06:02 CST 2016
- */
- int deleteByExample(XtHkyxcsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs
- *
- * @ibatorgenerated Fri Jan 01 20:06:02 CST 2016
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs
- *
- * @ibatorgenerated Fri Jan 01 20:06:02 CST 2016
- */
- void insert(XtHkyxcs record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs
- *
- * @ibatorgenerated Fri Jan 01 20:06:02 CST 2016
- */
- void insertSelective(XtHkyxcs record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs
- *
- * @ibatorgenerated Fri Jan 01 20:06:02 CST 2016
- */
- List<XtHkyxcs> selectByExample(XtHkyxcsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs
- *
- * @ibatorgenerated Fri Jan 01 20:06:02 CST 2016
- */
- XtHkyxcs selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs
- *
- * @ibatorgenerated Fri Jan 01 20:06:02 CST 2016
- */
- int updateByExampleSelective(XtHkyxcs record, XtHkyxcsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs
- *
- * @ibatorgenerated Fri Jan 01 20:06:02 CST 2016
- */
- int updateByExample(XtHkyxcs record, XtHkyxcsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs
- *
- * @ibatorgenerated Fri Jan 01 20:06:02 CST 2016
- */
- int updateByPrimaryKeySelective(XtHkyxcs record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hk_yxcs
- *
- * @ibatorgenerated Fri Jan 01 20:06:02 CST 2016
- */
- int updateByPrimaryKey(XtHkyxcs record);
-
- /**
- * 统计个数
- * @param paramMap
- * @return
- */
- public int countHkyxcsByParam(Map<String, Object> paramMap);
-
- /**
- * 查询
- * @param paramMap
- * @return
- */
- public List<XtHkyxcs> selectHkyxcsByParam(Map<String, Object> paramMap);
-
- public void batchUpdateHkyxcsByList(List<XtHkyxcs> yxcsList);
- }
|