123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- package com.huimv.ws.dao;
- import java.util.List;
- import java.util.Map;
- import com.huimv.ws.dataobject.SjWsss;
- import com.huimv.ws.dataobject.SjWsssExample;
- public interface SjWsssDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_ss
- *
- * @ibatorgenerated Fri Apr 27 09:29:22 CST 2018
- */
- int countByExample(SjWsssExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_ss
- *
- * @ibatorgenerated Fri Apr 27 09:29:22 CST 2018
- */
- int deleteByExample(SjWsssExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_ss
- *
- * @ibatorgenerated Fri Apr 27 09:29:22 CST 2018
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_ss
- *
- * @ibatorgenerated Fri Apr 27 09:29:22 CST 2018
- */
- void insert(SjWsss record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_ss
- *
- * @ibatorgenerated Fri Apr 27 09:29:22 CST 2018
- */
- void insertSelective(SjWsss record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_ss
- *
- * @ibatorgenerated Fri Apr 27 09:29:22 CST 2018
- */
- List<SjWsss> selectByExample(SjWsssExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_ss
- *
- * @ibatorgenerated Fri Apr 27 09:29:22 CST 2018
- */
- SjWsss selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_ss
- *
- * @ibatorgenerated Fri Apr 27 09:29:22 CST 2018
- */
- int updateByExampleSelective(SjWsss record, SjWsssExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_ss
- *
- * @ibatorgenerated Fri Apr 27 09:29:22 CST 2018
- */
- int updateByExample(SjWsss record, SjWsssExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_ss
- *
- * @ibatorgenerated Fri Apr 27 09:29:22 CST 2018
- */
- int updateByPrimaryKeySelective(SjWsss record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_ss
- *
- * @ibatorgenerated Fri Apr 27 09:29:22 CST 2018
- */
- int updateByPrimaryKey(SjWsss record);
-
- public List<SjWsss> selectWsssCgqidByParam(Map<String, Object> searchParam);
-
- public List<SjWsss> selectWsssByParam(Map<String, Object> searchParam);
-
- public List<SjWsss> selectQcssByParam(Map<String, Object> searchParam);
- }
|