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