PaymentLogMapper.java 3.2 KB

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