123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- package com.huimv.sj.dao;
- import java.util.Date;
- import java.util.List;
- import java.util.Map;
- import com.huimv.sj.dataobject.SjJllcsj;
- import com.huimv.sj.dataobject.SjJllcsjExample;
- public interface SjJllcsjDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_jllcsj
- *
- * @ibatorgenerated Fri Apr 01 11:28:45 CST 2016
- */
- int countByExample(SjJllcsjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_jllcsj
- *
- * @ibatorgenerated Fri Apr 01 11:28:45 CST 2016
- */
- int deleteByExample(SjJllcsjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_jllcsj
- *
- * @ibatorgenerated Fri Apr 01 11:28:45 CST 2016
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_jllcsj
- *
- * @ibatorgenerated Fri Apr 01 11:28:45 CST 2016
- */
- void insert(SjJllcsj record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_jllcsj
- *
- * @ibatorgenerated Fri Apr 01 11:28:45 CST 2016
- */
- void insertSelective(SjJllcsj record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_jllcsj
- *
- * @ibatorgenerated Fri Apr 01 11:28:45 CST 2016
- */
- List<SjJllcsj> selectByExample(SjJllcsjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_jllcsj
- *
- * @ibatorgenerated Fri Apr 01 11:28:45 CST 2016
- */
- SjJllcsj selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_jllcsj
- *
- * @ibatorgenerated Fri Apr 01 11:28:45 CST 2016
- */
- int updateByExampleSelective(SjJllcsj record, SjJllcsjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_jllcsj
- *
- * @ibatorgenerated Fri Apr 01 11:28:45 CST 2016
- */
- int updateByExample(SjJllcsj record, SjJllcsjExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_jllcsj
- *
- * @ibatorgenerated Fri Apr 01 11:28:45 CST 2016
- */
- int updateByPrimaryKeySelective(SjJllcsj record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sj_jllcsj
- *
- * @ibatorgenerated Fri Apr 01 11:28:45 CST 2016
- */
- int updateByPrimaryKey(SjJllcsj record);
-
- /**
- * 获取最大记录时间
- * @param searchParam
- * @return
- */
- public Date selectMaxJllcsjTimeByParam(Map<String, Object> searchParam);
-
- /**
- * 插入数据
- * @param paramMapList
- */
- public void insertJllcsjByParam(List<SjJllcsj> paramMapList);
-
- /**
- * 获取全程采食量统计图
- * @param paramMap
- * @return
- */
- public List<SjJllcsj> selectJllcsjCslByParam(Map<String, Object> paramMap);
-
- /**
- * 获取lcid列表
- * @param paramMap
- * @return
- */
- public List<SjJllcsj> selectJllcsjLcidByParam(Map<String, Object> paramMap);
-
- /**
- * 获取所有lcid当天采食量
- * @param paramMap
- * @return
- */
- public List<SjJllcsj> selectJllcsjLccslByParam(Map<String, Object> paramMap);
-
- /**
- * 获取lcid每小时采食量
- * @param paramMap
- * @return
- */
- public List<SjJllcsj> selectJllcsjLcidCslByParam(Map<String, Object> paramMap);
-
- /**
- * 获取料槽活跃指数
- * @param paramMap
- * @return
- */
- public List<SjJllcsj> selectJllcsjHyzsByParam(Map<String, Object> paramMap);
-
- /**
- * 获取总数
- * @param paramMap
- * @return
- */
- public String selectJllcsjSumcslByParam(Map<String, Object> paramMap);
- }
|