package com.huimv.sjlr.dao; import java.util.List; import java.util.Map; import com.huimv.sjlr.dataobject.SjlrMyjl; import com.huimv.sjlr.dataobject.SjlrMyjlExample; import com.huimv.sjlr.dataobject.SjlrMzda; public interface SjlrMyjlDAO { /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_myjl * * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017 */ int countByExample(SjlrMyjlExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_myjl * * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017 */ int deleteByExample(SjlrMyjlExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_myjl * * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017 */ int deleteByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_myjl * * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017 */ void insert(SjlrMyjl record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_myjl * * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017 */ void insertSelective(SjlrMyjl record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_myjl * * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017 */ List selectByExample(SjlrMyjlExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_myjl * * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017 */ SjlrMyjl selectByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_myjl * * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017 */ int updateByExampleSelective(SjlrMyjl record, SjlrMyjlExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_myjl * * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017 */ int updateByExample(SjlrMyjl record, SjlrMyjlExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_myjl * * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017 */ int updateByPrimaryKeySelective(SjlrMyjl record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_myjl * * @ibatorgenerated Tue Feb 28 15:21:46 CST 2017 */ int updateByPrimaryKey(SjlrMyjl record); /** * 获取普通免疫列表 * @param parmaMap * @return */ public List selectPtmyListByParam(Map paramMap); /** * 获取种猪免疫列表 * @param parmaMap * @return */ public List selectZzmyListByParam(Map paramMap); /** * 获取肥猪免疫列表 * @param parmaMap * @return */ public List selectFzmyListByParam(Map paramMap); /** * 获取档案 * @param paramMap * @return */ public List selectZzmyDaListByParam(Map paramMap); }