123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- package com.huimv.sjlr.dao;
- import java.util.List;
- import java.util.Map;
- import com.huimv.sjlr.dataobject.SjlrZzsw;
- import com.huimv.sjlr.dataobject.SjlrZzswExample;
- public interface SjlrZzswDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzsw
- *
- * @ibatorgenerated Wed Mar 08 10:44:48 CST 2017
- */
- int countByExample(SjlrZzswExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzsw
- *
- * @ibatorgenerated Wed Mar 08 10:44:48 CST 2017
- */
- int deleteByExample(SjlrZzswExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzsw
- *
- * @ibatorgenerated Wed Mar 08 10:44:48 CST 2017
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzsw
- *
- * @ibatorgenerated Wed Mar 08 10:44:48 CST 2017
- */
- void insert(SjlrZzsw record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzsw
- *
- * @ibatorgenerated Wed Mar 08 10:44:48 CST 2017
- */
- void insertSelective(SjlrZzsw record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzsw
- *
- * @ibatorgenerated Wed Mar 08 10:44:48 CST 2017
- */
- List<SjlrZzsw> selectByExample(SjlrZzswExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzsw
- *
- * @ibatorgenerated Wed Mar 08 10:44:48 CST 2017
- */
- SjlrZzsw selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzsw
- *
- * @ibatorgenerated Wed Mar 08 10:44:48 CST 2017
- */
- int updateByExampleSelective(SjlrZzsw record, SjlrZzswExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzsw
- *
- * @ibatorgenerated Wed Mar 08 10:44:48 CST 2017
- */
- int updateByExample(SjlrZzsw record, SjlrZzswExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzsw
- *
- * @ibatorgenerated Wed Mar 08 10:44:48 CST 2017
- */
- int updateByPrimaryKeySelective(SjlrZzsw record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzsw
- *
- * @ibatorgenerated Wed Mar 08 10:44:48 CST 2017
- */
- int updateByPrimaryKey(SjlrZzsw record);
-
- /**
- * 种猪死亡
- * @param paramMap
- * @return
- */
- public List<SjlrZzsw> selectZzswListByParam(Map<String, Object> paramMap);
- }
|