123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- package com.huimv.sjlr.dao;
- import java.util.List;
- import java.util.Map;
- import com.huimv.sjlr.dataobject.SjlrDnjl;
- import com.huimv.sjlr.dataobject.SjlrDnjlExample;
- import com.huimv.sjlr.dataobject.SjlrMzda;
- public interface SjlrDnjlDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_dnjl
- *
- * @ibatorgenerated Thu Feb 23 13:43:48 CST 2017
- */
- int countByExample(SjlrDnjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_dnjl
- *
- * @ibatorgenerated Thu Feb 23 13:43:48 CST 2017
- */
- int deleteByExample(SjlrDnjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_dnjl
- *
- * @ibatorgenerated Thu Feb 23 13:43:48 CST 2017
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_dnjl
- *
- * @ibatorgenerated Thu Feb 23 13:43:48 CST 2017
- */
- void insert(SjlrDnjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_dnjl
- *
- * @ibatorgenerated Thu Feb 23 13:43:48 CST 2017
- */
- void insertSelective(SjlrDnjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_dnjl
- *
- * @ibatorgenerated Thu Feb 23 13:43:48 CST 2017
- */
- List<SjlrDnjl> selectByExample(SjlrDnjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_dnjl
- *
- * @ibatorgenerated Thu Feb 23 13:43:48 CST 2017
- */
- SjlrDnjl selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_dnjl
- *
- * @ibatorgenerated Thu Feb 23 13:43:48 CST 2017
- */
- int updateByExampleSelective(SjlrDnjl record, SjlrDnjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_dnjl
- *
- * @ibatorgenerated Thu Feb 23 13:43:48 CST 2017
- */
- int updateByExample(SjlrDnjl record, SjlrDnjlExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_dnjl
- *
- * @ibatorgenerated Thu Feb 23 13:43:48 CST 2017
- */
- int updateByPrimaryKeySelective(SjlrDnjl record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_dnjl
- *
- * @ibatorgenerated Thu Feb 23 13:43:48 CST 2017
- */
- int updateByPrimaryKey(SjlrDnjl record);
- /**
- * 查询断奶记录
- * @param paramMap
- * @return
- */
- public List<SjlrDnjl> selectDnjlListByParam(Map<String, Object> paramMap);
-
- public List<SjlrMzda> selectSearchDnjlListByParam(Map<String, Object> paramMap);
-
- public List<SjlrDnjl> selectAddDnjlListByParam(Map<String, Object> paramMap);
-
- public List<SjlrDnjl> selectDnjltcByParam(Map<String, Object> paramMap);
- }
|