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 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 selectDTO(Map map); }