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.
105 lines
2.1 KiB
105 lines
2.1 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_REFUND_NOTIFY_LOG = 'order_refund_notify_log';
|
|
|
|
/**
|
|
* @Message("订单支付")
|
|
*/
|
|
const ORDER_PAYMENT_LOG = 'order_payment_log';
|
|
|
|
/**
|
|
* @Message("订单完成")
|
|
*/
|
|
const ORDER_COMPLETE_LOG = 'order_complete_log';
|
|
|
|
/**
|
|
* @Message("订单退款")
|
|
*/
|
|
const ORDER_REFUND_LOG = 'order_refund_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';
|
|
|
|
/**
|
|
* @Message("优惠券退还")
|
|
*/
|
|
const COUPON_REFUND_LOG = 'coupon_refund_log';
|
|
|
|
/**
|
|
* @Message("提现失败")
|
|
*/
|
|
const STORE_WITHDRAW_FAIL_LOG = 'store_withdraw_fail_log';
|
|
|
|
/**
|
|
* @Message("付款到微信钱包失败")
|
|
*/
|
|
const PAY_TO_WX_FAIL_LOG = 'pay_to_wx_fail_log';
|
|
|
|
}
|