package com.huimv.sjlr.dao; import com.huimv.sjlr.dataobject.SjlrMzda; import com.huimv.sjlr.dataobject.SjlrZzxs; import com.huimv.sjlr.dataobject.SjlrZzxsExample; import java.util.List; import java.util.Map; public interface SjlrZzxsDAO { /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_zzxs * * @ibatorgenerated Thu Jul 06 09:23:56 CST 2017 */ int countByExample(SjlrZzxsExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_zzxs * * @ibatorgenerated Thu Jul 06 09:23:56 CST 2017 */ int deleteByExample(SjlrZzxsExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_zzxs * * @ibatorgenerated Thu Jul 06 09:23:56 CST 2017 */ int deleteByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_zzxs * * @ibatorgenerated Thu Jul 06 09:23:56 CST 2017 */ void insert(SjlrZzxs record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_zzxs * * @ibatorgenerated Thu Jul 06 09:23:56 CST 2017 */ void insertSelective(SjlrZzxs record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_zzxs * * @ibatorgenerated Thu Jul 06 09:23:56 CST 2017 */ List selectByExample(SjlrZzxsExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_zzxs * * @ibatorgenerated Thu Jul 06 09:23:56 CST 2017 */ SjlrZzxs selectByPrimaryKey(Integer id); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_zzxs * * @ibatorgenerated Thu Jul 06 09:23:56 CST 2017 */ int updateByExampleSelective(SjlrZzxs record, SjlrZzxsExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_zzxs * * @ibatorgenerated Thu Jul 06 09:23:56 CST 2017 */ int updateByExample(SjlrZzxs record, SjlrZzxsExample example); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_zzxs * * @ibatorgenerated Thu Jul 06 09:23:56 CST 2017 */ int updateByPrimaryKeySelective(SjlrZzxs record); /** * This method was generated by Apache iBATIS ibator. * This method corresponds to the database table sjlr_zzxs * * @ibatorgenerated Thu Jul 06 09:23:56 CST 2017 */ int updateByPrimaryKey(SjlrZzxs record); /** * 种猪销售 * @param paramMap * @return */ public List selectZzxsListByParam(Map paramMap); /** * 获取档案 * @param paramMap * @return */ public List selectZzxsDaListByParam(Map paramMap); /** * 种猪待售 * @param paramMap * @return */ public List selectZzdsListByParam(Map paramMap); /** * 获取种猪待售档案 * @param paramMap * @return */ public List selectZzdsDaListByParam(Map paramMap); public void insertZzdsByParam(List paramMapList); // public void updateZzdsByParam(List paramMapList); public void updateZzdsByParam(List zzxsList); public List selectZzdsAlltByParam(Map paramMap); public List selectZzxsAllListByParam(Map paramMap); }