123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- package com.huimv.sjlr.dao;
- import com.huimv.sjlr.dataobject.SjlrMzda;
- import com.huimv.sjlr.dataobject.SjlrPzjl;
- import com.huimv.sjlr.dataobject.SjlrPzjlExample;
- import java.util.List;
- import java.util.Map;
- public interface SjlrPzjlDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_pzjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:06 CST 2017
- */
- int countByExample(SjlrPzjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_pzjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:06 CST 2017
- */
- int deleteByExample(SjlrPzjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_pzjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:06 CST 2017
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_pzjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:06 CST 2017
- */
- void insert(SjlrPzjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_pzjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:06 CST 2017
- */
- void insertSelective(SjlrPzjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_pzjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:06 CST 2017
- */
- List<SjlrPzjl> selectByExample(SjlrPzjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_pzjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:06 CST 2017
- */
- SjlrPzjl selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_pzjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:06 CST 2017
- */
- int updateByExampleSelective(SjlrPzjl record, SjlrPzjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_pzjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:06 CST 2017
- */
- int updateByExample(SjlrPzjl record, SjlrPzjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_pzjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:06 CST 2017
- */
- int updateByPrimaryKeySelective(SjlrPzjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_pzjl
- *
- * @ibatorgenerated Wed Mar 08 10:44:06 CST 2017
- */
- int updateByPrimaryKey(SjlrPzjl record);
-
- /**
- * 查询配种记录
- * @param paramMap
- * @return
- */
- public List<SjlrPzjl> selectPzjlListByParam(Map<String, Object> paramMap);
-
- /**
- * 配种母猪列表
- * @param paramMap
- * @return
- */
- public List<SjlrMzda> selectPzjlMzdaListByParam(Map<String, Object> paramMap);
-
- /**
- * 统计配种数
- * @param paramMap
- * @return
- */
- public int countPzjlByParam(Map<String, Object> paramMap);
-
- /**
- * 统计配种分娩
- * @param paramMap
- * @return
- */
- public int countPzFmByParam(Map<String, Object> paramMap);
- /**
- * 统计配种胎次
- * @param paramMap
- * @return
- */
- public int countPztcByParam(Map<String, Object> paramMap);
- /**
- * 配种记录新增查询舍栏和胎次
- * @param paramMap
- * @return
- */
- public List<SjlrPzjl> selectPzjlAddByParam(Map<String, Object> paramMap);
- }
|