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.
28 lines
576 B
28 lines
576 B
2 years ago
|
using System.ComponentModel;
|
||
|
|
||
|
namespace GpsModels
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 车辆定位状态,地图监控列表显示:移动,静止,离线。
|
||
|
/// </summary>
|
||
|
public enum GpsStateEnum
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 0离线
|
||
|
/// </summary>
|
||
|
[Description("离线")]
|
||
|
OffLine = 0,
|
||
|
/// <summary>
|
||
|
/// 1移动
|
||
|
/// </summary>
|
||
|
[Description("移动")]
|
||
|
Moving = 1,
|
||
|
|
||
|
/// <summary>
|
||
|
/// 2静止
|
||
|
/// </summary>
|
||
|
[Description("静止")]
|
||
|
Motionless = 2,
|
||
|
}
|
||
|
}
|