using System.ComponentModel;
namespace NCC.Extend.Entitys;
public enum UavAircraftStatusEnum
{
///
/// 启用
///
[Description("空闲")]
空闲 = 1,
///
/// 停用
///
[Description("租赁中")]
租赁中 = 2,
///
/// 维修
///
[Description("维修")]
维修 = 3,
///
/// 损坏
///
[Description("损坏")]
损坏 = 4,
}