You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.2 KiB
64 lines
1.2 KiB
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Constants;
|
|
|
|
use Hyperf\Constants\AbstractConstants;
|
|
use Hyperf\Constants\Annotation\Constants;
|
|
|
|
/**
|
|
* @Constants
|
|
*/
|
|
class LogLabel extends AbstractConstants
|
|
{
|
|
/**
|
|
* @Message("Ssdb Log Label")
|
|
*/
|
|
const SSDB_LOG = 'ssdb_log';
|
|
|
|
const COUPON_LOG = 'coupon_log';
|
|
|
|
/**
|
|
* @Message("Device Speaker Log Label")
|
|
*/
|
|
const DEVICE_LOG = 'device_log';
|
|
|
|
/**
|
|
* @Message("Pay Notice Log Label")
|
|
*/
|
|
const PAY_NOTIFY_WXMINI = 'notify_wxmini';
|
|
|
|
/**
|
|
* @Message("Order Log Label")
|
|
*/
|
|
const ORDER_LOG = 'order_log';
|
|
|
|
/**
|
|
* @Message("Separate Accounts Log Label")
|
|
*/
|
|
const SEPARATE_ACCOUNTS_LOG = 'separate_accounts_log';
|
|
|
|
/**
|
|
* @Message("Online Order Complete Log Label")
|
|
*/
|
|
const ONLINE_COMPLETE_LOG = 'online_complete_log';
|
|
|
|
/**
|
|
* @Message("Online Paid Complete Log Label")
|
|
*/
|
|
const ONLINE_PAID_LOG = 'online_paid_log';
|
|
|
|
/**
|
|
* @Message("Offline Paid Complete Log Label")
|
|
*/
|
|
const OFFLINE_PAID_LOG = 'offline_paid_log';
|
|
|
|
/**
|
|
* @Message("Pay refund Log Label")
|
|
*/
|
|
const PAY_NOTIFY_REFUND = 'notify_refund';
|
|
|
|
const AUTO_CANCEL_USER_ORDER = 'auto_cancel_user_order_log';
|
|
|
|
}
|