package com.huimv.sjlr.dao; import com.huimv.sjlr.dataobject.SjlrGzda; import com.huimv.sjlr.dataobject.SjlrGzdaExample; import java.util.List; import java.util.Map; public interface SjlrGzdaDAO { /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_gzda * * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017 */ int countByExample(SjlrGzdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_gzda * * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017 */ int deleteByExample(SjlrGzdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_gzda * * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017 */ int deleteByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_gzda * * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017 */ void insert(SjlrGzda record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_gzda * * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017 */ void insertSelective(SjlrGzda record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_gzda * * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017 */ List selectByExample(SjlrGzdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_gzda * * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017 */ SjlrGzda selectByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_gzda * * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017 */ int updateByExampleSelective(SjlrGzda record, SjlrGzdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_gzda * * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017 */ int updateByExample(SjlrGzda record, SjlrGzdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_gzda * * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017 */ int updateByPrimaryKeySelective(SjlrGzda record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_gzda * * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017 */ int updateByPrimaryKey(SjlrGzda record); /** * 获取公猪档案列表 * @param parmaMap * @return */ public List getGzdaListByParam(Map paramMap); /** * 批量插入更新 * @param paramMapList,mzdaExList * @return */ public void updatGzdaByParam(List paramMapList,List mzdaExList); /** * 配种公猪间隔 * @param paramMapList,mzdaExList * @return */ public List selectpzjgByParam(Map paramMap); }