AbstractController.class.php 436 Bytes
<?php
/**
 * AbstractController.class.php
 * $author$
 */

namespace Apicp\Controller\Order;

abstract class AbstractController extends \Common\Controller\Apicp\AbstractController
{
    protected $needCheckThePayment = false;

    // 订单状态:待支付
    const ORDER_STATUS_WAITING_PAY = 1;

    // 订单状态:取消
    const ORDER_STATUS_CANCEL = 3;

    // 订单状态:支付中
    const ORDER_STATUS_PAYING = 100;
}