123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- package com.huimv.ws.dao;
- import com.huimv.ws.dataobject.SjWsbod;
- import com.huimv.ws.dataobject.SjWsbodExample;
- import java.util.List;
- import java.util.Map;
- public interface SjWsbodDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_bod
- *
- * @ibatorgenerated Fri Apr 27 09:28:15 CST 2018
- */
- int countByExample(SjWsbodExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_bod
- *
- * @ibatorgenerated Fri Apr 27 09:28:15 CST 2018
- */
- int deleteByExample(SjWsbodExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_bod
- *
- * @ibatorgenerated Fri Apr 27 09:28:15 CST 2018
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_bod
- *
- * @ibatorgenerated Fri Apr 27 09:28:15 CST 2018
- */
- void insert(SjWsbod record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_bod
- *
- * @ibatorgenerated Fri Apr 27 09:28:15 CST 2018
- */
- void insertSelective(SjWsbod record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_bod
- *
- * @ibatorgenerated Fri Apr 27 09:28:15 CST 2018
- */
- List<SjWsbod> selectByExample(SjWsbodExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_bod
- *
- * @ibatorgenerated Fri Apr 27 09:28:15 CST 2018
- */
- SjWsbod selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_bod
- *
- * @ibatorgenerated Fri Apr 27 09:28:15 CST 2018
- */
- int updateByExampleSelective(SjWsbod record, SjWsbodExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_bod
- *
- * @ibatorgenerated Fri Apr 27 09:28:15 CST 2018
- */
- int updateByExample(SjWsbod record, SjWsbodExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_bod
- *
- * @ibatorgenerated Fri Apr 27 09:28:15 CST 2018
- */
- int updateByPrimaryKeySelective(SjWsbod record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_ws_bod
- *
- * @ibatorgenerated Fri Apr 27 09:28:15 CST 2018
- */
- int updateByPrimaryKey(SjWsbod record);
-
- public List<SjWsbod> selectWsbodCgqidByParam(Map<String, Object> searchParam);
-
- public List<SjWsbod> selectWsbodByParam(Map<String, Object> searchParam);
-
- public List<SjWsbod> selectQcbodByParam(Map<String, Object> searchParam);
- }
|