123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- 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<SjlrZzxs> 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<SjlrZzxs> selectZzxsListByParam(Map<String, Object> paramMap);
-
- /**
- * 获取档案
- * @param paramMap
- * @return
- */
- public List<SjlrMzda> selectZzxsDaListByParam(Map<String, Object> paramMap);
-
-
- /**
- * 种猪待售
- * @param paramMap
- * @return
- */
- public List<SjlrZzxs> selectZzdsListByParam(Map<String, Object> paramMap);
-
- /**
- * 获取种猪待售档案
- * @param paramMap
- * @return
- */
- public List<SjlrMzda> selectZzdsDaListByParam(Map<String, Object> paramMap);
- public void insertZzdsByParam(List<SjlrZzxs> paramMapList);
- // public void updateZzdsByParam(List<SjlrZzxs> paramMapList);
- public void updateZzdsByParam(List<SjlrZzxs> zzxsList);
- public List<SjlrZzxs> selectZzdsAlltByParam(Map<String, Object> paramMap);
-
- public List<SjlrZzxs> selectZzxsAllListByParam(Map<String, Object> paramMap);
- }
|