XtLypzDAO.java 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. package com.huimv.xt.dao;
  2. import com.huimv.xt.dataobject.XtLypz;
  3. import com.huimv.xt.dataobject.XtLypzExample;
  4. import java.util.List;
  5. import java.util.Map;
  6. public interface XtLypzDAO {
  7. /**
  8. * This method was generated by Apache iBATIS ibator.
  9. * This method corresponds to the database table xt_lypz
  10. *
  11. * @ibatorgenerated Mon May 30 09:08:48 CST 2016
  12. */
  13. int countByExample(XtLypzExample example);
  14. /**
  15. * This method was generated by Apache iBATIS ibator.
  16. * This method corresponds to the database table xt_lypz
  17. *
  18. * @ibatorgenerated Mon May 30 09:08:48 CST 2016
  19. */
  20. int deleteByExample(XtLypzExample example);
  21. /**
  22. * This method was generated by Apache iBATIS ibator.
  23. * This method corresponds to the database table xt_lypz
  24. *
  25. * @ibatorgenerated Mon May 30 09:08:48 CST 2016
  26. */
  27. int deleteByPrimaryKey(Integer id);
  28. /**
  29. * This method was generated by Apache iBATIS ibator.
  30. * This method corresponds to the database table xt_lypz
  31. *
  32. * @ibatorgenerated Mon May 30 09:08:48 CST 2016
  33. */
  34. void insert(XtLypz record);
  35. /**
  36. * This method was generated by Apache iBATIS ibator.
  37. * This method corresponds to the database table xt_lypz
  38. *
  39. * @ibatorgenerated Mon May 30 09:08:48 CST 2016
  40. */
  41. void insertSelective(XtLypz record);
  42. /**
  43. * This method was generated by Apache iBATIS ibator.
  44. * This method corresponds to the database table xt_lypz
  45. *
  46. * @ibatorgenerated Mon May 30 09:08:48 CST 2016
  47. */
  48. List<XtLypz> selectByExample(XtLypzExample example);
  49. /**
  50. * This method was generated by Apache iBATIS ibator.
  51. * This method corresponds to the database table xt_lypz
  52. *
  53. * @ibatorgenerated Mon May 30 09:08:48 CST 2016
  54. */
  55. XtLypz selectByPrimaryKey(Integer id);
  56. /**
  57. * This method was generated by Apache iBATIS ibator.
  58. * This method corresponds to the database table xt_lypz
  59. *
  60. * @ibatorgenerated Mon May 30 09:08:48 CST 2016
  61. */
  62. int updateByExampleSelective(XtLypz record, XtLypzExample example);
  63. /**
  64. * This method was generated by Apache iBATIS ibator.
  65. * This method corresponds to the database table xt_lypz
  66. *
  67. * @ibatorgenerated Mon May 30 09:08:48 CST 2016
  68. */
  69. int updateByExample(XtLypz record, XtLypzExample example);
  70. /**
  71. * This method was generated by Apache iBATIS ibator.
  72. * This method corresponds to the database table xt_lypz
  73. *
  74. * @ibatorgenerated Mon May 30 09:08:48 CST 2016
  75. */
  76. int updateByPrimaryKeySelective(XtLypz record);
  77. /**
  78. * This method was generated by Apache iBATIS ibator.
  79. * This method corresponds to the database table xt_lypz
  80. *
  81. * @ibatorgenerated Mon May 30 09:08:48 CST 2016
  82. */
  83. int updateByPrimaryKey(XtLypz record);
  84. /**
  85. * 插入蓝牙配置
  86. * @param paramMapList
  87. */
  88. public void insertLypzListByParam(List<XtLypz> paramMapList);
  89. /**
  90. * 获取蓝牙配置
  91. * @param paramMap
  92. * @return
  93. */
  94. public List<XtLypz> selectLypzByParam(Map<String, Object> paramMap);
  95. }