123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- package com.huimv.lierda.dao;
- import com.huimv.busi.base.dto.ResponseBean;
- import com.huimv.busi.xt.constant.XtSqlMapConstant;
- import com.huimv.da.dataobject.DaZsda;
- import com.huimv.lierda.dataobject.LierdaDyda;
- import com.huimv.lierda.dataobject.LierdaDydaExample;
- import com.huimv.web.base.PageBean;
- import java.util.List;
- import java.util.Map;
- public interface LierdaDydaDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dyda
- *
- * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
- */
- int countByExample(LierdaDydaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dyda
- *
- * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
- */
- int deleteByExample(LierdaDydaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dyda
- *
- * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dyda
- *
- * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
- */
- void insert(LierdaDyda record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dyda
- *
- * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
- */
- void insertSelective(LierdaDyda record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dyda
- *
- * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
- */
- List<LierdaDyda> selectByExample(LierdaDydaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dyda
- *
- * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
- */
- LierdaDyda selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dyda
- *
- * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
- */
- int updateByExampleSelective(LierdaDyda record, LierdaDydaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dyda
- *
- * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
- */
- int updateByExample(LierdaDyda record, LierdaDydaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dyda
- *
- * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
- */
- int updateByPrimaryKeySelective(LierdaDyda record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dyda
- *
- * @ibatorgenerated Thu Sep 19 14:44:46 CST 2019
- */
- int updateByPrimaryKey(LierdaDyda record);
-
- ResponseBean selectListByParam(Map<String , Object> searchParam , PageBean pageBean) ;
- //绑定单元时遍历单元(ifm为猪舍,szmc为单元)
- public List<DaZsda> getDydaList(Map<String , Object> paramMap);
- }
|