123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- package com.huimv.zneb.dao;
- import com.huimv.busi.base.dto.ResponseBean;
- import com.huimv.web.base.PageBean;
- import com.huimv.zneb.dataobject.ZnebEbda;
- import com.huimv.zneb.dataobject.ZnebEbdaExample;
- import java.util.List;
- import java.util.Map;
- public interface ZnebEbdaDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table zneb_ebda
- *
- * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
- */
- int countByExample(ZnebEbdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table zneb_ebda
- *
- * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
- */
- int deleteByExample(ZnebEbdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table zneb_ebda
- *
- * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table zneb_ebda
- *
- * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
- */
- void insert(ZnebEbda record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table zneb_ebda
- *
- * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
- */
- void insertSelective(ZnebEbda record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table zneb_ebda
- *
- * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
- */
- List<ZnebEbda> selectByExample(ZnebEbdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table zneb_ebda
- *
- * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
- */
- ZnebEbda selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table zneb_ebda
- *
- * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
- */
- int updateByExampleSelective(ZnebEbda record, ZnebEbdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table zneb_ebda
- *
- * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
- */
- int updateByExample(ZnebEbda record, ZnebEbdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table zneb_ebda
- *
- * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
- */
- int updateByPrimaryKeySelective(ZnebEbda record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table zneb_ebda
- *
- * @ibatorgenerated Fri Feb 21 13:45:37 CST 2020
- */
- int updateByPrimaryKey(ZnebEbda record);
-
- public ResponseBean selectListByParam(Map<String , Object> paramMap , PageBean pageBean);
- }
|