OfficialFeePriceMapper.java 3.2 KB

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