2025-11-16 19:33:01 +08:00

60 lines
1.4 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XPrintServer.Business.Enums
{
/// <summary>
/// 订单状态1未支付2已支付3:生产中4:已生产5已发货6用户已收到货 7已完成8申请退款中9退款中10已退款
/// </summary>
public enum OrderStatus : int
{
/// <summary>
/// 初始化,没状态
/// </summary>
None = 0,
/// <summary>
/// 未支付
/// </summary>
Unpaid = 1,
/// <summary>
/// 已支付
/// </summary>
Paid = 2,
/// <summary>
/// 生产中
/// </summary>
InProduction = 3,
/// <summary>
/// 已生产
/// </summary>
ProductionFinish = 4,
/// <summary>
/// 已发货
/// </summary>
Shipped = 5,
/// <summary>
/// 已收到货
/// </summary>
GoodsReceived = 6,
/// <summary>
/// 已完成
/// </summary>
Finished = 7,
/// <summary>
/// 申请退款中
/// </summary>
RequestedRefund = 8,
/// <summary>
/// 退款中
/// </summary>
RefundInProgress = 9,
/// <summary>
/// 已退款
/// </summary>
Refund = 10
}
}