34 lines
1008 B
C#
34 lines
1008 B
C#
namespace InterfaceForward.Domain.Shared;
|
|
|
|
public static class GlobalConst
|
|
{
|
|
public const string FromAccount = "$FromAccount";
|
|
public const string FromBody = "$FromBody";
|
|
public const string TimeStamp = "$TimeStamp";
|
|
public const string DateTime = "$DateTime";
|
|
public const string Url = "$Url";
|
|
public const string Token = "$token";
|
|
public const string AccountHashCode = "$hash";
|
|
|
|
/// <summary>
|
|
/// 不执行动态代码
|
|
/// </summary>
|
|
public const string NoExecute = "$NoExecute";
|
|
|
|
/// <summary>
|
|
/// 默认日期格式
|
|
/// </summary>
|
|
public const string DefaultDateStyle = "yyyy-MM-dd HH:mm:ss";
|
|
|
|
/// <summary>
|
|
/// 应用id
|
|
/// </summary>
|
|
public const string AppId = nameof(AppId);
|
|
|
|
/// <summary>
|
|
/// 服务商接口qps redis key前缀
|
|
/// </summary>
|
|
public const string ServiceProviderInterfaceQpsKeyPrefix = "InterfaceQPS";
|
|
|
|
public const string InterfaceRelayExchange = "sjzy.interface.relay.direct";
|
|
} |