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