mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-25 08:25:07 +08:00
订单:
1、移除 deliverStatus 发货状态,暂时没作用 2、无需发货时,使用 logisticsId 进行实现 3、订单详情,增加 logisticsId 和 logisticsName 返回
This commit is contained in:
@ -1,28 +0,0 @@
|
||||
package cn.iocoder.yudao.module.trade.enums.order;
|
||||
|
||||
import lombok.Getter;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
|
||||
/**
|
||||
* 交易订单 - 发货状态
|
||||
*
|
||||
* @author 芋道源码
|
||||
*/
|
||||
@RequiredArgsConstructor
|
||||
@Getter
|
||||
public enum TradeOrderDeliveryStatusEnum {
|
||||
|
||||
UNDELIVERED(0, "未发货"),
|
||||
DELIVERED(1, "已发货"),
|
||||
RECEIVED(2, "已收货");
|
||||
|
||||
/**
|
||||
* 状态值
|
||||
*/
|
||||
private final Integer status;
|
||||
/**
|
||||
* 状态名
|
||||
*/
|
||||
private final String name;
|
||||
|
||||
}
|
Reference in New Issue
Block a user