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.
 
 

50 lines
935 B

<?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_OFFLINE_LOG = 'order_onffline_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';
}