1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- package com.huimv.lierda.dao;
- import com.huimv.lierda.dataobject.LierdaGlidExample;
- import com.huimv.lierda.dataobject.LierdaGlidKey;
- import java.util.List;
- public interface LierdaGlidDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_glid
- *
- * @ibatorgenerated Fri Sep 20 13:21:52 CST 2019
- */
- int countByExample(LierdaGlidExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_glid
- *
- * @ibatorgenerated Fri Sep 20 13:21:52 CST 2019
- */
- int deleteByExample(LierdaGlidExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_glid
- *
- * @ibatorgenerated Fri Sep 20 13:21:52 CST 2019
- */
- int deleteByPrimaryKey(LierdaGlidKey key);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_glid
- *
- * @ibatorgenerated Fri Sep 20 13:21:52 CST 2019
- */
- void insert(LierdaGlidKey record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_glid
- *
- * @ibatorgenerated Fri Sep 20 13:21:52 CST 2019
- */
- void insertSelective(LierdaGlidKey record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_glid
- *
- * @ibatorgenerated Fri Sep 20 13:21:52 CST 2019
- */
- List<LierdaGlidKey> selectByExample(LierdaGlidExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_glid
- *
- * @ibatorgenerated Fri Sep 20 13:21:52 CST 2019
- */
- int updateByExampleSelective(LierdaGlidKey record, LierdaGlidExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_glid
- *
- * @ibatorgenerated Fri Sep 20 13:21:52 CST 2019
- */
- int updateByExample(LierdaGlidKey record, LierdaGlidExample example);
- }
|