Files
KonSoft.Clean/modules/admin/src/KonSoft.Admin.Domain.Shared/Enums/OrderStatus.cs
2025-10-26 10:43:03 +08:00

14 lines
502 B
C#

namespace KonSoft.Admin.Enums;
public enum OrderStatus
{
Created = 1, //用户创建订单
Assigned, //家政人员已接单
ServiceCallPaymentComplete, //上门费支付完成
ServiceStarted, //服务开始
ServiceCompleted, //服务已完成
PaymentPending, //用户支付订单
PaymentComplete, //用户支付完成
Cancelled, //订单取消
Refunded, //订单退款
}