123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- package com.huimv.sjlr.dao;
- import java.util.List;
- import java.util.Map;
- import com.huimv.sjlr.dataobject.SjlrZzwd;
- import com.huimv.sjlr.dataobject.SjlrZzwdExample;
- public interface SjlrZzwdDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzwd
- *
- * @ibatorgenerated Wed Aug 28 11:23:57 CST 2019
- */
- int countByExample(SjlrZzwdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzwd
- *
- * @ibatorgenerated Wed Aug 28 11:23:57 CST 2019
- */
- int deleteByExample(SjlrZzwdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzwd
- *
- * @ibatorgenerated Wed Aug 28 11:23:57 CST 2019
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzwd
- *
- * @ibatorgenerated Wed Aug 28 11:23:57 CST 2019
- */
- void insert(SjlrZzwd record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzwd
- *
- * @ibatorgenerated Wed Aug 28 11:23:57 CST 2019
- */
- void insertSelective(SjlrZzwd record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzwd
- *
- * @ibatorgenerated Wed Aug 28 11:23:57 CST 2019
- */
- List<SjlrZzwd> selectByExample(SjlrZzwdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzwd
- *
- * @ibatorgenerated Wed Aug 28 11:23:57 CST 2019
- */
- SjlrZzwd selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzwd
- *
- * @ibatorgenerated Wed Aug 28 11:23:57 CST 2019
- */
- int updateByExampleSelective(SjlrZzwd record, SjlrZzwdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzwd
- *
- * @ibatorgenerated Wed Aug 28 11:23:57 CST 2019
- */
- int updateByExample(SjlrZzwd record, SjlrZzwdExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzwd
- *
- * @ibatorgenerated Wed Aug 28 11:23:57 CST 2019
- */
- int updateByPrimaryKeySelective(SjlrZzwd record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table sjlr_zzwd
- *
- * @ibatorgenerated Wed Aug 28 11:23:57 CST 2019
- */
- int updateByPrimaryKey(SjlrZzwd record);
-
- public List<SjlrZzwd> getZzwdListByParam(Map<String, Object> paramMap);
- }
|