CurvefittingmonthmainMapper.java 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. package com.gyee.runeconomy.mapper.auto;
  2. import com.gyee.runeconomy.model.auto.Curvefittingmonthmain;
  3. import com.gyee.runeconomy.model.auto.CurvefittingmonthmainExample;
  4. import org.apache.ibatis.annotations.Param;
  5. import java.util.List;
  6. public interface CurvefittingmonthmainMapper {
  7. /**
  8. * This method was generated by MyBatis Generator.
  9. * This method corresponds to the database table curvefittingmonthmain
  10. *
  11. * @mbg.generated
  12. */
  13. long countByExample(CurvefittingmonthmainExample example);
  14. /**
  15. * This method was generated by MyBatis Generator.
  16. * This method corresponds to the database table curvefittingmonthmain
  17. *
  18. * @mbg.generated
  19. */
  20. int deleteByExample(CurvefittingmonthmainExample example);
  21. /**
  22. * This method was generated by MyBatis Generator.
  23. * This method corresponds to the database table curvefittingmonthmain
  24. *
  25. * @mbg.generated
  26. */
  27. int deleteByPrimaryKey(String id);
  28. /**
  29. * This method was generated by MyBatis Generator.
  30. * This method corresponds to the database table curvefittingmonthmain
  31. *
  32. * @mbg.generated
  33. */
  34. int insert(Curvefittingmonthmain record);
  35. /**
  36. * This method was generated by MyBatis Generator.
  37. * This method corresponds to the database table curvefittingmonthmain
  38. *
  39. * @mbg.generated
  40. */
  41. int insertSelective(Curvefittingmonthmain record);
  42. /**
  43. * This method was generated by MyBatis Generator.
  44. * This method corresponds to the database table curvefittingmonthmain
  45. *
  46. * @mbg.generated
  47. */
  48. List<Curvefittingmonthmain> selectByExample(CurvefittingmonthmainExample example);
  49. /**
  50. * This method was generated by MyBatis Generator.
  51. * This method corresponds to the database table curvefittingmonthmain
  52. *
  53. * @mbg.generated
  54. */
  55. Curvefittingmonthmain selectByPrimaryKey(String id);
  56. /**
  57. * This method was generated by MyBatis Generator.
  58. * This method corresponds to the database table curvefittingmonthmain
  59. *
  60. * @mbg.generated
  61. */
  62. int updateByExampleSelective(@Param("record") Curvefittingmonthmain record, @Param("example") CurvefittingmonthmainExample example);
  63. /**
  64. * This method was generated by MyBatis Generator.
  65. * This method corresponds to the database table curvefittingmonthmain
  66. *
  67. * @mbg.generated
  68. */
  69. int updateByExample(@Param("record") Curvefittingmonthmain record, @Param("example") CurvefittingmonthmainExample example);
  70. /**
  71. * This method was generated by MyBatis Generator.
  72. * This method corresponds to the database table curvefittingmonthmain
  73. *
  74. * @mbg.generated
  75. */
  76. int updateByPrimaryKeySelective(Curvefittingmonthmain record);
  77. /**
  78. * This method was generated by MyBatis Generator.
  79. * This method corresponds to the database table curvefittingmonthmain
  80. *
  81. * @mbg.generated
  82. */
  83. int updateByPrimaryKey(Curvefittingmonthmain record);
  84. }