12345678910111213141516171819202122232425262728293031 |
- package com.ydd.module.service;
- import com.ydd.module.domain.OrderTip;
- import com.baomidou.mybatisplus.extension.service.IService;
- import java.math.BigDecimal;
- import java.util.List;
- /**
- * 【请填写功能名称】Service接口
- *
- * @author douya
- * @date 2021-05-17
- */
- public interface IOrderTipService extends IService<OrderTip> {
- /**
- * 查询列表
- * @param orderTip 实体
- * @return 列表
- */
- List<OrderTip> queryList(OrderTip orderTip);
- /**
- * 查询小费总金额
- * @param orderId
- * @return
- */
- BigDecimal sumAmountByOrderId(Long orderId);
- }
|