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.
 
 

75 lines
1.5 KiB

<?php
declare(strict_types=1);
namespace App\Constants\v3;
use Hyperf\Constants\AbstractConstants;
use Hyperf\Constants\Annotation\Constants;
/**
* @Constants
*/
class LogLabel extends AbstractConstants
{
/**
* @Message("ErrorCode异常抛出")
*/
const ERROR_CODE_EXCEPTION = 'error_code_exception_log';
/**
* @Message("线上订单")
*/
const ORDER_ONLINE_LOG = 'order_online_log';
/**
* @Message("线上订单支付完成")
*/
const ORDER_ONLINE_PAID_LOG = 'order_online_paid_log';
/**
* @Message("线上订单支付通知")
*/
const ORDER_ONLINE_PAY_NOTIFY_LOG = 'order_online_pay_notify_log';
/**
* @Message("当面付订单")
*/
const ORDER_OFFLINE_LOG = 'order_offline_log';
/**
* @Message("当面付订单支付完成")
*/
const ORDER_OFFLINE_PAID_LOG = 'order_offline_paid_log';
/**
* @Message("当面付订单支付通知")
*/
const ORDER_OFFLINE_PAY_NOTIFY_LOG = 'order_offline_pay_notify_log';
/**
* @Message("订单支付")
*/
const ORDER_PAYMENT_LOG = 'order_payment_log';
/**
* @Message("IOT设备绑定")
*/
const DEVICE_BIND_LOG = 'device_bind_log';
/**
* @Message("IOT设备Pub消息")
*/
const DEVICE_SEND_LOG = 'device_send_log';
/**
* @Message("优惠券返券")
*/
const COUPON_REBATE_LOG = 'coupon_rebate_log';
/**
* @Message("分账")
*/
const SEPARATE_ACCOUNTS_LOG = 'separate_accounts_log';
}