FinancialPaymentMapper.java 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.FinancialPayment;
  3. import com.goafanti.common.model.FinancialPaymentExample;
  4. import com.goafanti.organization.bo.NoticeInformationBo;
  5. import com.goafanti.organization.bo.outFinancialPayment;
  6. import java.math.BigDecimal;
  7. import java.util.List;
  8. import org.apache.ibatis.annotations.Param;
  9. public interface FinancialPaymentMapper {
  10. /**
  11. * This method was generated by MyBatis Generator. This method corresponds to the database table financial_payment
  12. * @mbg.generated Tue Jun 16 16:45:09 CST 2020
  13. */
  14. long countByExample(FinancialPaymentExample example);
  15. /**
  16. * This method was generated by MyBatis Generator. This method corresponds to the database table financial_payment
  17. * @mbg.generated Tue Jun 16 16:45:09 CST 2020
  18. */
  19. int deleteByExample(FinancialPaymentExample example);
  20. /**
  21. * This method was generated by MyBatis Generator. This method corresponds to the database table financial_payment
  22. * @mbg.generated Tue Jun 16 16:45:09 CST 2020
  23. */
  24. int deleteByPrimaryKey(Integer id);
  25. /**
  26. * This method was generated by MyBatis Generator. This method corresponds to the database table financial_payment
  27. * @mbg.generated Tue Jun 16 16:45:09 CST 2020
  28. */
  29. int insert(FinancialPayment record);
  30. /**
  31. * This method was generated by MyBatis Generator. This method corresponds to the database table financial_payment
  32. * @mbg.generated Tue Jun 16 16:45:09 CST 2020
  33. */
  34. int insertSelective(FinancialPayment record);
  35. /**
  36. * This method was generated by MyBatis Generator. This method corresponds to the database table financial_payment
  37. * @mbg.generated Tue Jun 16 16:45:09 CST 2020
  38. */
  39. List<FinancialPayment> selectByExample(FinancialPaymentExample example);
  40. /**
  41. * This method was generated by MyBatis Generator. This method corresponds to the database table financial_payment
  42. * @mbg.generated Tue Jun 16 16:45:09 CST 2020
  43. */
  44. FinancialPayment selectByPrimaryKey(Integer id);
  45. /**
  46. * This method was generated by MyBatis Generator. This method corresponds to the database table financial_payment
  47. * @mbg.generated Tue Jun 16 16:45:09 CST 2020
  48. */
  49. int updateByExampleSelective(@Param("record") FinancialPayment record,
  50. @Param("example") FinancialPaymentExample example);
  51. /**
  52. * This method was generated by MyBatis Generator. This method corresponds to the database table financial_payment
  53. * @mbg.generated Tue Jun 16 16:45:09 CST 2020
  54. */
  55. int updateByExample(@Param("record") FinancialPayment record, @Param("example") FinancialPaymentExample example);
  56. /**
  57. * This method was generated by MyBatis Generator. This method corresponds to the database table financial_payment
  58. * @mbg.generated Tue Jun 16 16:45:09 CST 2020
  59. */
  60. int updateByPrimaryKeySelective(FinancialPayment record);
  61. /**
  62. * This method was generated by MyBatis Generator. This method corresponds to the database table financial_payment
  63. * @mbg.generated Tue Jun 16 16:45:09 CST 2020
  64. */
  65. int updateByPrimaryKey(FinancialPayment record);
  66. List<outFinancialPayment> selectByPid(Integer id);
  67. NoticeInformationBo selectBypidGetNotice(Integer pid);
  68. void updateOrderCost(@Param("pid")Integer pid, @Param("partyAmount")BigDecimal partyAmount);
  69. }