IOrderTipService.java 614 B

12345678910111213141516171819202122232425262728293031
  1. package com.ydd.module.service;
  2. import com.ydd.module.domain.OrderTip;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. import java.math.BigDecimal;
  5. import java.util.List;
  6. /**
  7. * 【请填写功能名称】Service接口
  8. *
  9. * @author douya
  10. * @date 2021-05-17
  11. */
  12. public interface IOrderTipService extends IService<OrderTip> {
  13. /**
  14. * 查询列表
  15. * @param orderTip 实体
  16. * @return 列表
  17. */
  18. List<OrderTip> queryList(OrderTip orderTip);
  19. /**
  20. * 查询小费总金额
  21. * @param orderId
  22. * @return
  23. */
  24. BigDecimal sumAmountByOrderId(Long orderId);
  25. }