1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- package com.huimv.wscl.dao;
- import com.huimv.wscl.dataobject.WsclSbgz;
- import com.huimv.wscl.dataobject.WsclSbgzExample;
- import java.util.List;
- public interface WsclSbgzDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table wscl_sbgz
- *
- * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019
- */
- int countByExample(WsclSbgzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table wscl_sbgz
- *
- * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019
- */
- int deleteByExample(WsclSbgzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table wscl_sbgz
- *
- * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table wscl_sbgz
- *
- * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019
- */
- void insert(WsclSbgz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table wscl_sbgz
- *
- * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019
- */
- void insertSelective(WsclSbgz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table wscl_sbgz
- *
- * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019
- */
- List<WsclSbgz> selectByExample(WsclSbgzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table wscl_sbgz
- *
- * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019
- */
- WsclSbgz selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table wscl_sbgz
- *
- * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019
- */
- int updateByExampleSelective(WsclSbgz record, WsclSbgzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table wscl_sbgz
- *
- * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019
- */
- int updateByExample(WsclSbgz record, WsclSbgzExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table wscl_sbgz
- *
- * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019
- */
- int updateByPrimaryKeySelective(WsclSbgz record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table wscl_sbgz
- *
- * @ibatorgenerated Tue Jul 23 17:21:17 CST 2019
- */
- int updateByPrimaryKey(WsclSbgz record);
- }
|