123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- package com.huimv.sj.dao;
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
- import com.huimv.sj.dataobject.SjRcssj;
- import com.huimv.sj.dataobject.SjRcssjExample;
- public interface SjRcssjDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_rcssj
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- int countByExample(SjRcssjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_rcssj
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- int deleteByExample(SjRcssjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_rcssj
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_rcssj
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- void insert(SjRcssj record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_rcssj
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- void insertSelective(SjRcssj record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_rcssj
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- List<SjRcssj> selectByExample(SjRcssjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_rcssj
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- SjRcssj selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_rcssj
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- int updateByExampleSelective(SjRcssj record, SjRcssjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_rcssj
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- int updateByExample(SjRcssj record, SjRcssjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_rcssj
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- int updateByPrimaryKeySelective(SjRcssj record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_rcssj
- *
- * @ibatorgenerated Thu Jun 19 15:59:45 CST 2014
- */
- int updateByPrimaryKey(SjRcssj record);
-
- List<SjRcssj> selectByParam(HashMap<String, Object> map);
-
- int countSelectByParam(HashMap<String, Object> map);
-
- public String sumRcssjByParam(Map<String, Object> map);
- }
|