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 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 selectFmjlListByParam(Map paramMap); public List selectAddFmjlListByParam(Map paramMap); public List selectSearchFmjlListByParam(Map paramMap); /** * 统计分娩数 * @param paramMap * @return */ public int countFmjlByParam(Map paramMap); }