123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- 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<SjlrMzda> 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<SjlrMzda> getMzdaListByParam(Map<String, Object> paramMap);
-
- /**
- * 获取正在配种的母猪记录
- * @param paramMap
- * @return
- */
- public List<SjlrMzda> getMzdaListByPzjl(Map<String, Object> paramMap);
- /**
- * 批量插入更新
- * @param paramMapList,gzdaExList
- * @return
- */
- public void updatMzdaByParam(List<SjlrMzda> paramMapList,List<SjlrMzdaExample> mzdaExList);
-
- public List<SjlrMzxxxxDTO> getMzxxListByParam(Map<String, Object> paramMap);
- public List<SjlrMzxxxxDTO> getTtMzxxListByParam(Map<String, Object> paramMap);
- public List<SjlrMzda> getDaListByZzds(Map<String, Object> paramMap);
- /**
- * 批量修改所有表中的动物耳标
- * @param paramMapList
- * @param mzdaExList
- */
- public int updateDwebAllByParam(Map<String, Object> paramMap);
- }
|