package com.huimv.sjlr.dao; import java.util.List; import java.util.Map; import com.huimv.dto.SjlrMzxxxxDTO; import com.huimv.sjlr.dataobject.SjlrMzda; import com.huimv.sjlr.dataobject.SjlrMzdaExample; public interface SjlrMzdaDAO { /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_mzda * * @ibatorgenerated Wed Mar 08 10:43:49 CST 2017 */ int countByExample(SjlrMzdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_mzda * * @ibatorgenerated Wed Mar 08 10:43:49 CST 2017 */ int deleteByExample(SjlrMzdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_mzda * * @ibatorgenerated Wed Mar 08 10:43:49 CST 2017 */ int deleteByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_mzda * * @ibatorgenerated Wed Mar 08 10:43:49 CST 2017 */ void insert(SjlrMzda record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_mzda * * @ibatorgenerated Wed Mar 08 10:43:49 CST 2017 */ void insertSelective(SjlrMzda record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_mzda * * @ibatorgenerated Wed Mar 08 10:43:49 CST 2017 */ List selectByExample(SjlrMzdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_mzda * * @ibatorgenerated Wed Mar 08 10:43:49 CST 2017 */ SjlrMzda selectByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_mzda * * @ibatorgenerated Wed Mar 08 10:43:49 CST 2017 */ int updateByExampleSelective(SjlrMzda record, SjlrMzdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_mzda * * @ibatorgenerated Wed Mar 08 10:43:49 CST 2017 */ int updateByExample(SjlrMzda record, SjlrMzdaExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_mzda * * @ibatorgenerated Wed Mar 08 10:43:49 CST 2017 */ int updateByPrimaryKeySelective(SjlrMzda record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_mzda * * @ibatorgenerated Wed Mar 08 10:43:49 CST 2017 */ int updateByPrimaryKey(SjlrMzda record); /** * 获取母猪档案列表 * @param parmaMap * @return */ public List getMzdaListByParam(Map paramMap); /** * 获取正在配种的母猪记录 * @param paramMap * @return */ public List getMzdaListByPzjl(Map paramMap); /** * 批量插入更新 * @param paramMapList,gzdaExList * @return */ public void updatMzdaByParam(List paramMapList,List mzdaExList); public List getMzxxListByParam(Map paramMap); public List getTtMzxxListByParam(Map paramMap); public List getDaListByZzds(Map paramMap); /** * 批量修改所有表中的动物耳标 * @param paramMapList * @param mzdaExList */ public int updateDwebAllByParam(Map paramMap); }