TempConstantDAO.java 3.0 KB

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