6
0
Fork 0
jiqu-library-server/app/Constants/OrderStatus.php

15 lines
415 B
PHP

<?php
namespace App\Constants;
class OrderStatus
{
public const UNKNOWN = -1; // 未知
public const PENDING = 0; // 待付款
public const PAID = 1; // 已付款/待发货
public const SHIPPING = 2; // 发货中
public const SHIPPED = 3; // 已发货/待收货
public const COMPLETED = 9; // 已完成
public const CANCELLED = 10; // 已取消
}