123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- package com.huimv.sjlr.dao;
- import com.huimv.sjlr.dataobject.SjlrRsjl;
- import com.huimv.sjlr.dataobject.SjlrRsjlExample;
- import java.util.List;
- import java.util.Map;
- public interface SjlrRsjlDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_rsjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:23 CST 2017
- */
- int countByExample(SjlrRsjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_rsjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:23 CST 2017
- */
- int deleteByExample(SjlrRsjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_rsjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:23 CST 2017
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_rsjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:23 CST 2017
- */
- void insert(SjlrRsjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_rsjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:23 CST 2017
- */
- void insertSelective(SjlrRsjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_rsjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:23 CST 2017
- */
- List<SjlrRsjl> selectByExample(SjlrRsjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_rsjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:23 CST 2017
- */
- SjlrRsjl selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_rsjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:23 CST 2017
- */
- int updateByExampleSelective(SjlrRsjl record, SjlrRsjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_rsjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:23 CST 2017
- */
- int updateByExample(SjlrRsjl record, SjlrRsjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_rsjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:23 CST 2017
- */
- int updateByPrimaryKeySelective(SjlrRsjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_rsjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:23 CST 2017
- */
- int updateByPrimaryKey(SjlrRsjl record);
-
- /**
- * 查询妊娠记录
- * @param paramMap
- * @return
- */
- public List<SjlrRsjl> selectRsjlListByParam(Map<String, Object> paramMap);
-
- /**
- * 查询妊娠记录
- * @param paramMap
- * @return
- */
- public List<SjlrRsjl> selectRsjlPzListByParam(Map<String, Object> paramMap);
-
- public List<SjlrRsjl> selectRsjlIDByParam(Map<String, Object> paramMap);
- }
|