123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- 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<SjlrMyjl> 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<SjlrMyjl> selectPtmyListByParam(Map<String, Object> paramMap);
- /**
- * 获取种猪免疫列表
- * @param parmaMap
- * @return
- */
- public List<SjlrMyjl> selectZzmyListByParam(Map<String, Object> paramMap);
- /**
- * 获取肥猪免疫列表
- * @param parmaMap
- * @return
- */
- public List<SjlrMyjl> selectFzmyListByParam(Map<String, Object> paramMap);
-
- /**
- * 获取档案
- * @param paramMap
- * @return
- */
- public List<SjlrMzda> selectZzmyDaListByParam(Map<String, Object> paramMap);
- }
|