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.
26 lines
529 B
26 lines
529 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace GPSBusiness.Enum
|
|
{
|
|
/// <summary>
|
|
/// 状态 1Acc 2作业状态
|
|
/// </summary>
|
|
public enum StatusEnum
|
|
{
|
|
/// <summary>
|
|
/// Acc状态
|
|
/// </summary>
|
|
[Description("Acc")]
|
|
Acc = 1,
|
|
/// <summary>
|
|
/// 作业状态
|
|
/// </summary>
|
|
[Description("作业状态")]
|
|
Work = 2,
|
|
}
|
|
}
|
|
|