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 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 selectRsjlListByParam(Map paramMap); /** * 查询妊娠记录 * @param paramMap * @return */ public List selectRsjlPzListByParam(Map paramMap); public List selectRsjlIDByParam(Map paramMap); }