123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- package com.huimv.lierda.dao;
- import com.huimv.lierda.dataobject.LierdaDwtw;
- import com.huimv.lierda.dataobject.LierdaDwtwExample;
- import java.util.List;
- import java.util.Map;
- public interface LierdaDwtwDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwtw
- *
- * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
- */
- int countByExample(LierdaDwtwExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwtw
- *
- * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
- */
- int deleteByExample(LierdaDwtwExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwtw
- *
- * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwtw
- *
- * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
- */
- void insert(LierdaDwtw record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwtw
- *
- * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
- */
- void insertSelective(LierdaDwtw record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwtw
- *
- * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
- */
- List<LierdaDwtw> selectByExample(LierdaDwtwExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwtw
- *
- * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
- */
- LierdaDwtw selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwtw
- *
- * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
- */
- int updateByExampleSelective(LierdaDwtw record, LierdaDwtwExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwtw
- *
- * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
- */
- int updateByExample(LierdaDwtw record, LierdaDwtwExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwtw
- *
- * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
- */
- int updateByPrimaryKeySelective(LierdaDwtw record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwtw
- *
- * @ibatorgenerated Fri Sep 20 15:50:01 CST 2019
- */
- int updateByPrimaryKey(LierdaDwtw record);
-
- //一定时间内 每头猪的体温 (最新一条)
- public List<LierdaDwtw> getDwtwList(Map<String , Object> paramMap);
- }
|