123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- package com.huimv.sjlr.dao;
- import com.huimv.sjlr.dataobject.SjlrFmjl;
- import com.huimv.sjlr.dataobject.SjlrFmjlExample;
- import java.util.List;
- import java.util.Map;
- public interface SjlrFmjlDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_fmjl
- *
- * @ibatorgenerated Wed Mar 08 10:37:52 CST 2017
- */
- int countByExample(SjlrFmjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_fmjl
- *
- * @ibatorgenerated Wed Mar 08 10:37:52 CST 2017
- */
- int deleteByExample(SjlrFmjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_fmjl
- *
- * @ibatorgenerated Wed Mar 08 10:37:52 CST 2017
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_fmjl
- *
- * @ibatorgenerated Wed Mar 08 10:37:52 CST 2017
- */
- void insert(SjlrFmjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_fmjl
- *
- * @ibatorgenerated Wed Mar 08 10:37:52 CST 2017
- */
- void insertSelective(SjlrFmjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_fmjl
- *
- * @ibatorgenerated Wed Mar 08 10:37:52 CST 2017
- */
- List<SjlrFmjl> selectByExample(SjlrFmjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_fmjl
- *
- * @ibatorgenerated Wed Mar 08 10:37:52 CST 2017
- */
- SjlrFmjl selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_fmjl
- *
- * @ibatorgenerated Wed Mar 08 10:37:52 CST 2017
- */
- int updateByExampleSelective(SjlrFmjl record, SjlrFmjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_fmjl
- *
- * @ibatorgenerated Wed Mar 08 10:37:52 CST 2017
- */
- int updateByExample(SjlrFmjl record, SjlrFmjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_fmjl
- *
- * @ibatorgenerated Wed Mar 08 10:37:52 CST 2017
- */
- int updateByPrimaryKeySelective(SjlrFmjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_fmjl
- *
- * @ibatorgenerated Wed Mar 08 10:37:52 CST 2017
- */
- int updateByPrimaryKey(SjlrFmjl record);
-
- /**
- * 查询分娩记录
- * @param paramMap
- * @return
- */
- public List<SjlrFmjl> selectFmjlListByParam(Map<String, Object> paramMap);
-
- public List<SjlrFmjl> selectAddFmjlListByParam(Map<String, Object> paramMap);
-
- public List<SjlrFmjl> selectSearchFmjlListByParam(Map<String, Object> paramMap);
-
- /**
- * 统计分娩数
- * @param paramMap
- * @return
- */
- public int countFmjlByParam(Map<String, Object> paramMap);
- }
|