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.
41 lines
1.0 KiB
41 lines
1.0 KiB
2 years ago
|
|
||
|
namespace Znyc.Admin.Commons.Const
|
||
|
{
|
||
|
/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
public class CommonConst
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 默认超速速度
|
||
|
/// </summary>
|
||
|
public const int DEFAULT_OVERSPEED = 80;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 默认停留标示Id
|
||
|
/// </summary>
|
||
|
public const long DEFAULT_STAPTAG = 1003;
|
||
|
|
||
|
/// <summary>
|
||
|
/// 默认图片地址
|
||
|
/// </summary>
|
||
|
public const string Default_Image_Prefix =
|
||
|
"https://zhongnengyunche.com/dispatching/wx/upload/avatar/";
|
||
|
|
||
|
/// <summary>
|
||
|
/// 默认公司Logo名称
|
||
|
/// </summary>
|
||
|
public const string Default_CompanyLogo = "Default_AvatarUrl.png";
|
||
|
|
||
|
/// <summary>
|
||
|
/// 未知设备型号
|
||
|
/// </summary>
|
||
|
public const string Unknown_TerminalType = "未知设备型号";
|
||
|
|
||
|
/// <summary>
|
||
|
/// 未知物联卡类型
|
||
|
/// </summary>
|
||
|
public const string Unknown_CardType = "未知物联卡类型";
|
||
|
}
|
||
|
}
|