FaceRecoDAO.java 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. package com.huimv.face.dao;
  2. import com.huimv.dp.dto.FaceDTO;
  3. import com.huimv.face.dataobject.FaceReco;
  4. import com.huimv.face.dataobject.FaceRecoExample;
  5. import java.util.List;
  6. import java.util.Map;
  7. public interface FaceRecoDAO {
  8. /**
  9. * This method was generated by Apache iBATIS ibator.
  10. * This method corresponds to the database table face_reco
  11. *
  12. * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
  13. */
  14. int countByExample(FaceRecoExample example);
  15. /**
  16. * This method was generated by Apache iBATIS ibator.
  17. * This method corresponds to the database table face_reco
  18. *
  19. * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
  20. */
  21. int deleteByExample(FaceRecoExample example);
  22. /**
  23. * This method was generated by Apache iBATIS ibator.
  24. * This method corresponds to the database table face_reco
  25. *
  26. * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
  27. */
  28. int deleteByPrimaryKey(Integer id);
  29. /**
  30. * This method was generated by Apache iBATIS ibator.
  31. * This method corresponds to the database table face_reco
  32. *
  33. * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
  34. */
  35. void insert(FaceReco record);
  36. /**
  37. * This method was generated by Apache iBATIS ibator.
  38. * This method corresponds to the database table face_reco
  39. *
  40. * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
  41. */
  42. void insertSelective(FaceReco record);
  43. /**
  44. * This method was generated by Apache iBATIS ibator.
  45. * This method corresponds to the database table face_reco
  46. *
  47. * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
  48. */
  49. List<FaceReco> selectByExample(FaceRecoExample example);
  50. /**
  51. * This method was generated by Apache iBATIS ibator.
  52. * This method corresponds to the database table face_reco
  53. *
  54. * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
  55. */
  56. FaceReco selectByPrimaryKey(Integer id);
  57. /**
  58. * This method was generated by Apache iBATIS ibator.
  59. * This method corresponds to the database table face_reco
  60. *
  61. * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
  62. */
  63. int updateByExampleSelective(FaceReco record, FaceRecoExample example);
  64. /**
  65. * This method was generated by Apache iBATIS ibator.
  66. * This method corresponds to the database table face_reco
  67. *
  68. * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
  69. */
  70. int updateByExample(FaceReco record, FaceRecoExample example);
  71. /**
  72. * This method was generated by Apache iBATIS ibator.
  73. * This method corresponds to the database table face_reco
  74. *
  75. * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
  76. */
  77. int updateByPrimaryKeySelective(FaceReco record);
  78. /**
  79. * This method was generated by Apache iBATIS ibator.
  80. * This method corresponds to the database table face_reco
  81. *
  82. * @ibatorgenerated Mon Oct 14 11:20:12 CST 2019
  83. */
  84. int updateByPrimaryKey(FaceReco record);
  85. List<FaceDTO> selectDTO(Map<String , Object> map);
  86. }