123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- package com.huimv.face.dao;
- import com.huimv.dp.dto.FaceDTO;
- import com.huimv.face.dataobject.FaceReco;
- import com.huimv.face.dataobject.FaceRecoExample;
- import java.util.List;
- import java.util.Map;
- public interface FaceRecoDAO {
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_reco
- *
- * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
- */
- int countByExample(FaceRecoExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_reco
- *
- * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
- */
- int deleteByExample(FaceRecoExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_reco
- *
- * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
- */
- int deleteByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_reco
- *
- * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
- */
- void insert(FaceReco record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_reco
- *
- * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
- */
- void insertSelective(FaceReco record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_reco
- *
- * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
- */
- List<FaceReco> selectByExample(FaceRecoExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_reco
- *
- * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
- */
- FaceReco selectByPrimaryKey(Integer id);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_reco
- *
- * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
- */
- int updateByExampleSelective(FaceReco record, FaceRecoExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_reco
- *
- * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
- */
- int updateByExample(FaceReco record, FaceRecoExample example);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_reco
- *
- * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
- */
- int updateByPrimaryKeySelective(FaceReco record);
- /**
- * This method was generated by Apache iBATIS ibator.
- * This method corresponds to the database table face_reco
- *
- * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
- */
- int updateByPrimaryKey(FaceReco record);
-
- List<FaceDTO> selectDTO(Map<String , Object> map);
- }
|