PatentPaymentDetailsMapper.java 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package com.goafanti.common.dao;
  2. import java.util.List;
  3. import org.apache.ibatis.annotations.Param;
  4. import com.goafanti.common.model.PatentPaymentDetails;
  5. public interface PatentPaymentDetailsMapper {
  6. /**
  7. * This method was generated by MyBatis Generator.
  8. * This method corresponds to the database table patent_payment_details
  9. *
  10. * @mbg.generated Fri Aug 06 15:00:19 CST 2021
  11. */
  12. int deleteByPrimaryKey(Integer id);
  13. /**
  14. * This method was generated by MyBatis Generator.
  15. * This method corresponds to the database table patent_payment_details
  16. *
  17. * @mbg.generated Fri Aug 06 15:00:19 CST 2021
  18. */
  19. int insert(PatentPaymentDetails record);
  20. /**
  21. * This method was generated by MyBatis Generator.
  22. * This method corresponds to the database table patent_payment_details
  23. *
  24. * @mbg.generated Fri Aug 06 15:00:19 CST 2021
  25. */
  26. int insertSelective(PatentPaymentDetails record);
  27. /**
  28. * This method was generated by MyBatis Generator.
  29. * This method corresponds to the database table patent_payment_details
  30. *
  31. * @mbg.generated Fri Aug 06 15:00:19 CST 2021
  32. */
  33. PatentPaymentDetails selectByPrimaryKey(Integer id);
  34. /**
  35. * This method was generated by MyBatis Generator.
  36. * This method corresponds to the database table patent_payment_details
  37. *
  38. * @mbg.generated Fri Aug 06 15:00:19 CST 2021
  39. */
  40. int updateByPrimaryKeySelective(PatentPaymentDetails record);
  41. /**
  42. * This method was generated by MyBatis Generator.
  43. * This method corresponds to the database table patent_payment_details
  44. *
  45. * @mbg.generated Fri Aug 06 15:00:19 CST 2021
  46. */
  47. int updateByPrimaryKey(PatentPaymentDetails record);
  48. void insertBatch(List<PatentPaymentDetails> list);
  49. List<PatentPaymentDetails> selectByPid(Integer id);
  50. void deleteByPid(Integer pid);
  51. PatentPaymentDetails selectByPidAndYear(@Param("pid") Integer pid, @Param("year")Integer year);
  52. }