123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- package com.huimv.sjlr.dao;
- import com.huimv.sjlr.dataobject.SjlrGzda;
- import com.huimv.sjlr.dataobject.SjlrGzdaExample;
- import java.util.List;
- import java.util.Map;
- public interface SjlrGzdaDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_gzda
- *
- * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017
- */
- int countByExample(SjlrGzdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_gzda
- *
- * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017
- */
- int deleteByExample(SjlrGzdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_gzda
- *
- * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_gzda
- *
- * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017
- */
- void insert(SjlrGzda record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_gzda
- *
- * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017
- */
- void insertSelective(SjlrGzda record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_gzda
- *
- * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017
- */
- List<SjlrGzda> selectByExample(SjlrGzdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_gzda
- *
- * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017
- */
- SjlrGzda selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_gzda
- *
- * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017
- */
- int updateByExampleSelective(SjlrGzda record, SjlrGzdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_gzda
- *
- * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017
- */
- int updateByExample(SjlrGzda record, SjlrGzdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_gzda
- *
- * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017
- */
- int updateByPrimaryKeySelective(SjlrGzda record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_gzda
- *
- * @ibatorgenerated Wed Mar 08 10:40:08 CST 2017
- */
- int updateByPrimaryKey(SjlrGzda record);
-
- /**
- * 获取公猪档案列表
- * @param parmaMap
- * @return
- */
- public List<SjlrGzda> getGzdaListByParam(Map<String, Object> paramMap);
- /**
- * 批量插入更新
- * @param paramMapList,mzdaExList
- * @return
- */
- public void updatGzdaByParam(List<SjlrGzda> paramMapList,List<SjlrGzdaExample> mzdaExList);
- /**
- * 配种公猪间隔
- * @param paramMapList,mzdaExList
- * @return
- */
- public List<SjlrGzda> selectpzjgByParam(Map<String, Object> paramMap);
- }
|