TemporaryReceivablesMapper.java 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.TemporaryReceivables;
  3. import com.goafanti.common.model.TemporaryReceivablesExample;
  4. import com.goafanti.order.bo.TemporaryReceivablesBo;
  5. import java.math.BigDecimal;
  6. import java.util.List;
  7. import java.util.Map;
  8. import org.apache.ibatis.annotations.Param;
  9. public interface TemporaryReceivablesMapper {
  10. /**
  11. * This method was generated by MyBatis Generator. This method corresponds to the database table temporary_receivables
  12. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  13. */
  14. long countByExample(TemporaryReceivablesExample example);
  15. /**
  16. * This method was generated by MyBatis Generator. This method corresponds to the database table temporary_receivables
  17. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  18. */
  19. int deleteByExample(TemporaryReceivablesExample example);
  20. /**
  21. * This method was generated by MyBatis Generator. This method corresponds to the database table temporary_receivables
  22. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  23. */
  24. int deleteByPrimaryKey(Integer id);
  25. /**
  26. * This method was generated by MyBatis Generator. This method corresponds to the database table temporary_receivables
  27. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  28. */
  29. int insert(TemporaryReceivables record);
  30. /**
  31. * This method was generated by MyBatis Generator. This method corresponds to the database table temporary_receivables
  32. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  33. */
  34. int insertSelective(TemporaryReceivables record);
  35. /**
  36. * This method was generated by MyBatis Generator. This method corresponds to the database table temporary_receivables
  37. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  38. */
  39. List<TemporaryReceivables> selectByExample(TemporaryReceivablesExample example);
  40. /**
  41. * This method was generated by MyBatis Generator. This method corresponds to the database table temporary_receivables
  42. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  43. */
  44. TemporaryReceivables selectByPrimaryKey(Integer id);
  45. /**
  46. * This method was generated by MyBatis Generator. This method corresponds to the database table temporary_receivables
  47. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  48. */
  49. int updateByExampleSelective(@Param("record") TemporaryReceivables record,
  50. @Param("example") TemporaryReceivablesExample example);
  51. /**
  52. * This method was generated by MyBatis Generator. This method corresponds to the database table temporary_receivables
  53. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  54. */
  55. int updateByExample(@Param("record") TemporaryReceivables record,
  56. @Param("example") TemporaryReceivablesExample example);
  57. /**
  58. * This method was generated by MyBatis Generator. This method corresponds to the database table temporary_receivables
  59. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  60. */
  61. int updateByPrimaryKeySelective(TemporaryReceivables record);
  62. /**
  63. * This method was generated by MyBatis Generator. This method corresponds to the database table temporary_receivables
  64. * @mbg.generated Mon Oct 14 11:33:48 CST 2019
  65. */
  66. int updateByPrimaryKey(TemporaryReceivables record);
  67. int deleteByids(List<?> ids);
  68. int deleteByaid(String aid);
  69. List<TemporaryReceivables> selectByaid(String aid);
  70. void deleteNormalByaid(String aid);
  71. List<String> getRepeatOrderNo(List<TemporaryReceivablesBo> list);
  72. void insertBatch(List<TemporaryReceivablesBo> list);
  73. void updateRepeatOrderNo(String aid);
  74. String getCountlistReceivablesAmount(Map<String, Object> parameter);
  75. String getCountlistReceivablesTotalAmount(Map<String, Object> parameter);
  76. }