mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-25 00:15:06 +08:00
promotion:完善砍价 API ~ 提交下,准备出门吃饭!!!!
This commit is contained in:
@ -1,8 +1,11 @@
|
||||
package cn.iocoder.yudao.module.trade.api.order;
|
||||
|
||||
import cn.iocoder.yudao.module.trade.api.order.dto.TradeOrderRespDTO;
|
||||
import cn.iocoder.yudao.module.trade.api.order.dto.TradeOrderSummaryRespDTO;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 订单 API 接口
|
||||
@ -11,6 +14,14 @@ import java.time.LocalDateTime;
|
||||
*/
|
||||
public interface TradeOrderApi {
|
||||
|
||||
/**
|
||||
* 获得订单列表
|
||||
*
|
||||
* @param ids 订单编号数组
|
||||
* @return 订单列表
|
||||
*/
|
||||
List<TradeOrderRespDTO> getOrderList(Collection<Long> ids);
|
||||
|
||||
// TODO 芋艿:看看是不是可以删除掉;
|
||||
/**
|
||||
* 获取订单状态
|
||||
|
@ -84,4 +84,14 @@ public class TradeOrderRespDTO {
|
||||
*/
|
||||
private Boolean commentStatus;
|
||||
|
||||
// ========== 价格 + 支付基本信息 ==========
|
||||
/**
|
||||
* 支付订单编号
|
||||
*/
|
||||
private Long payOrderId;
|
||||
/**
|
||||
* 是否已支付
|
||||
*/
|
||||
private Boolean payStatus;
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user