using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DeviceRepair.Models.DeviceMaintenance { public enum DeviceWarrantyRequestFormStatus { /// /// 待维修 /// [Description("待维修")] AwaitingRepair, /// /// 待审核 /// [Description("待审核")] AwaitingApproval, /// /// 已完成 /// [Description("已完成")] BeComplate, /// /// 全部 /// [Description("全部")] All } }