TemporaryReceivablesMapper.java 3.6 KB

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