123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- package com.huimv.xt.dao;
- import java.util.List;
- import java.util.Map;
- import com.huimv.da.dataobject.DaZsda;
- import com.huimv.xt.dataobject.XtHjbjcs;
- import com.huimv.xt.dataobject.XtHjbjcsExample;
- public interface XtHjbjcsDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hjbjcs
- *
- * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
- */
- int countByExample(XtHjbjcsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hjbjcs
- *
- * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
- */
- int deleteByExample(XtHjbjcsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hjbjcs
- *
- * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hjbjcs
- *
- * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
- */
- void insert(XtHjbjcs record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hjbjcs
- *
- * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
- */
- void insertSelective(XtHjbjcs record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hjbjcs
- *
- * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
- */
- List<XtHjbjcs> selectByExample(XtHjbjcsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hjbjcs
- *
- * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
- */
- XtHjbjcs selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hjbjcs
- *
- * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
- */
- int updateByExampleSelective(XtHjbjcs record, XtHjbjcsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hjbjcs
- *
- * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
- */
- int updateByExample(XtHjbjcs record, XtHjbjcsExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hjbjcs
- *
- * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
- */
- int updateByPrimaryKeySelective(XtHjbjcs record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_hjbjcs
- *
- * @ibatorgenerated Mon Sep 15 14:39:16 CST 2014
- */
- int updateByPrimaryKey(XtHjbjcs record);
-
- /**
- * 根据参数统计
- * @param paramMap
- * @return
- */
- int countHjbjcsByParam(Map<String, Object> paramMap);
-
- /**
- * 根据参数查询
- * @param paramMap
- * @return
- */
- List<XtHjbjcs> selectHjbjcsByParam(Map<String, Object> paramMap);
-
- /**
- * 查询当前栏期的所有启用的报警参数
- */
- List<XtHjbjcs> selectHjbjcsByDqlq();
-
- /**
- * 判断猪舍信息是否重复
- */
- List<DaZsda> selectHjbjcsCheckZsxx(Map<String, Object> paramMap);
- }
|