1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- package com.huimv.face.dao;
- import com.huimv.face.dataobject.FaceUser;
- import com.huimv.face.dataobject.FaceUserExample;
- import java.util.List;
- public interface FaceUserDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_user
- *
- * @ibatorgenerated Mon Oct 14 11:19:28 CST 2019
- */
- int countByExample(FaceUserExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_user
- *
- * @ibatorgenerated Mon Oct 14 11:19:28 CST 2019
- */
- int deleteByExample(FaceUserExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_user
- *
- * @ibatorgenerated Mon Oct 14 11:19:28 CST 2019
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_user
- *
- * @ibatorgenerated Mon Oct 14 11:19:28 CST 2019
- */
- void insert(FaceUser record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_user
- *
- * @ibatorgenerated Mon Oct 14 11:19:28 CST 2019
- */
- void insertSelective(FaceUser record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_user
- *
- * @ibatorgenerated Mon Oct 14 11:19:28 CST 2019
- */
- List<FaceUser> selectByExample(FaceUserExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_user
- *
- * @ibatorgenerated Mon Oct 14 11:19:28 CST 2019
- */
- FaceUser selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_user
- *
- * @ibatorgenerated Mon Oct 14 11:19:28 CST 2019
- */
- int updateByExampleSelective(FaceUser record, FaceUserExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_user
- *
- * @ibatorgenerated Mon Oct 14 11:19:28 CST 2019
- */
- int updateByExample(FaceUser record, FaceUserExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_user
- *
- * @ibatorgenerated Mon Oct 14 11:19:28 CST 2019
- */
- int updateByPrimaryKeySelective(FaceUser record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_user
- *
- * @ibatorgenerated Mon Oct 14 11:19:28 CST 2019
- */
- int updateByPrimaryKey(FaceUser record);
- }
|