1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- package com.huimv.lierda.dao;
- import com.huimv.lierda.dataobject.LierdaDwda;
- import com.huimv.lierda.dataobject.LierdaDwdaExample;
- import java.util.List;
- public interface LierdaDwdaDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwda
- *
- * @ibatorgenerated Thu Sep 19 14:44:32 CST 2019
- */
- int countByExample(LierdaDwdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwda
- *
- * @ibatorgenerated Thu Sep 19 14:44:32 CST 2019
- */
- int deleteByExample(LierdaDwdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwda
- *
- * @ibatorgenerated Thu Sep 19 14:44:32 CST 2019
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwda
- *
- * @ibatorgenerated Thu Sep 19 14:44:32 CST 2019
- */
- void insert(LierdaDwda record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwda
- *
- * @ibatorgenerated Thu Sep 19 14:44:32 CST 2019
- */
- void insertSelective(LierdaDwda record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwda
- *
- * @ibatorgenerated Thu Sep 19 14:44:32 CST 2019
- */
- List<LierdaDwda> selectByExample(LierdaDwdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwda
- *
- * @ibatorgenerated Thu Sep 19 14:44:32 CST 2019
- */
- LierdaDwda selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwda
- *
- * @ibatorgenerated Thu Sep 19 14:44:32 CST 2019
- */
- int updateByExampleSelective(LierdaDwda record, LierdaDwdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwda
- *
- * @ibatorgenerated Thu Sep 19 14:44:32 CST 2019
- */
- int updateByExample(LierdaDwda record, LierdaDwdaExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwda
- *
- * @ibatorgenerated Thu Sep 19 14:44:32 CST 2019
- */
- int updateByPrimaryKeySelective(LierdaDwda record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table lierda_dwda
- *
- * @ibatorgenerated Thu Sep 19 14:44:32 CST 2019
- */
- int updateByPrimaryKey(LierdaDwda record);
- }
|