123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- package com.huimv.sjlr.dao;
- import com.huimv.sjlr.dataobject.SjlrZztt;
- import com.huimv.sjlr.dataobject.SjlrZzttExample;
- import java.util.List;
- import java.util.Map;
- public interface SjlrZzttDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zztt
- *
- * @ibatorgenerated Mon Apr 10 15:26:44 CST 2017
- */
- int countByExample(SjlrZzttExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zztt
- *
- * @ibatorgenerated Mon Apr 10 15:26:44 CST 2017
- */
- int deleteByExample(SjlrZzttExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zztt
- *
- * @ibatorgenerated Mon Apr 10 15:26:44 CST 2017
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zztt
- *
- * @ibatorgenerated Mon Apr 10 15:26:44 CST 2017
- */
- void insert(SjlrZztt record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zztt
- *
- * @ibatorgenerated Mon Apr 10 15:26:44 CST 2017
- */
- void insertSelective(SjlrZztt record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zztt
- *
- * @ibatorgenerated Mon Apr 10 15:26:44 CST 2017
- */
- List<SjlrZztt> selectByExample(SjlrZzttExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zztt
- *
- * @ibatorgenerated Mon Apr 10 15:26:44 CST 2017
- */
- SjlrZztt selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zztt
- *
- * @ibatorgenerated Mon Apr 10 15:26:44 CST 2017
- */
- int updateByExampleSelective(SjlrZztt record, SjlrZzttExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zztt
- *
- * @ibatorgenerated Mon Apr 10 15:26:44 CST 2017
- */
- int updateByExample(SjlrZztt record, SjlrZzttExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zztt
- *
- * @ibatorgenerated Mon Apr 10 15:26:44 CST 2017
- */
- int updateByPrimaryKeySelective(SjlrZztt record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zztt
- *
- * @ibatorgenerated Mon Apr 10 15:26:44 CST 2017
- */
- int updateByPrimaryKey(SjlrZztt record);
-
- /**
- * 种猪淘汰
- * @param paramMap
- * @return
- */
- List<SjlrZztt> selectZzttListByParam(Map<String, Object> paramMap);
- List<SjlrZztt> selectZzttSLByParam(Map<String, Object> paramMap);
- }
|