123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- package com.huimv.xt.dao;
- import com.huimv.da.dataobject.DaZsda;
- import com.huimv.xt.dataobject.XtHjbjcs;
- import com.huimv.xt.dataobject.XtSjpz;
- import com.huimv.xt.dataobject.XtSjpzExample;
- import java.util.List;
- import java.util.Map;
- public interface XtSjpzDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_sjpz
- *
- * @ibatorgenerated Fri Jun 17 13:33:23 CST 2016
- */
- int countByExample(XtSjpzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_sjpz
- *
- * @ibatorgenerated Fri Jun 17 13:33:23 CST 2016
- */
- int deleteByExample(XtSjpzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_sjpz
- *
- * @ibatorgenerated Fri Jun 17 13:33:23 CST 2016
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_sjpz
- *
- * @ibatorgenerated Fri Jun 17 13:33:23 CST 2016
- */
- void insert(XtSjpz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_sjpz
- *
- * @ibatorgenerated Fri Jun 17 13:33:23 CST 2016
- */
- void insertSelective(XtSjpz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_sjpz
- *
- * @ibatorgenerated Fri Jun 17 13:33:23 CST 2016
- */
- List<XtSjpz> selectByExample(XtSjpzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_sjpz
- *
- * @ibatorgenerated Fri Jun 17 13:33:23 CST 2016
- */
- XtSjpz selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_sjpz
- *
- * @ibatorgenerated Fri Jun 17 13:33:23 CST 2016
- */
- int updateByExampleSelective(XtSjpz record, XtSjpzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_sjpz
- *
- * @ibatorgenerated Fri Jun 17 13:33:23 CST 2016
- */
- int updateByExample(XtSjpz record, XtSjpzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_sjpz
- *
- * @ibatorgenerated Fri Jun 17 13:33:23 CST 2016
- */
- int updateByPrimaryKeySelective(XtSjpz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table xt_sjpz
- *
- * @ibatorgenerated Fri Jun 17 13:33:23 CST 2016
- */
- int updateByPrimaryKey(XtSjpz record);
-
- /**
- * 根据参数统计
- * @param paramMap
- * @return
- */
- int countHjbjsjpzByParam(Map<String, Object> paramMap);
-
- /**
- * 根据参数查询
- * @param paramMap
- * @return
- */
- List<XtSjpz> selectHjbjsjpzByParam(Map<String, Object> paramMap);
-
- /**
- * 判断猪舍信息是否重复
- */
- List<DaZsda> selectHjbjsjpzCheckZsxx(Map<String, Object> paramMap);
- }
|