2024-07-17 02:32:45 +00:00
|
|
|
|
using DeviceRepair.Models.Attr;
|
|
|
|
|
|
|
|
|
|
namespace DeviceRepair.Models
|
2024-05-28 14:36:38 +00:00
|
|
|
|
{
|
|
|
|
|
public enum EnumMaintenanceType
|
|
|
|
|
{
|
2024-07-17 02:32:45 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 空
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ComboBoxItem(Caption = "全部")]
|
|
|
|
|
None,
|
|
|
|
|
|
2024-05-28 14:36:38 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// 年
|
|
|
|
|
/// </summary>
|
2024-07-17 02:32:45 +00:00
|
|
|
|
[ComboBoxItem(Caption = "年度保养")]
|
2024-05-28 14:36:38 +00:00
|
|
|
|
Annual,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 奇数年
|
|
|
|
|
/// </summary>
|
2024-07-17 02:32:45 +00:00
|
|
|
|
[ComboBoxItem(Caption = "奇数年保养", IsIgnore = true)]
|
2024-05-28 14:36:38 +00:00
|
|
|
|
OddAnnual,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 偶数年
|
|
|
|
|
/// </summary>
|
2024-07-17 02:32:45 +00:00
|
|
|
|
[ComboBoxItem(Caption = "偶数年保养", IsIgnore = true)]
|
2024-05-28 14:36:38 +00:00
|
|
|
|
EvenAnnual,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 半年
|
|
|
|
|
/// </summary>
|
2024-07-17 02:32:45 +00:00
|
|
|
|
[ComboBoxItem(Caption = "半年度保养")]
|
2024-05-28 14:36:38 +00:00
|
|
|
|
Semian,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 季度
|
|
|
|
|
/// </summary>
|
2024-07-17 02:32:45 +00:00
|
|
|
|
[ComboBoxItem(Caption = "季度保养")]
|
2024-05-28 14:36:38 +00:00
|
|
|
|
Quarterly,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 月
|
|
|
|
|
/// </summary>
|
2024-07-17 02:32:45 +00:00
|
|
|
|
[ComboBoxItem(Caption = "月度保养")]
|
2024-05-28 14:36:38 +00:00
|
|
|
|
Monthly,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2024-07-17 02:32:45 +00:00
|
|
|
|
/// 每周
|
2024-05-28 14:36:38 +00:00
|
|
|
|
/// </summary>
|
2024-07-17 02:32:45 +00:00
|
|
|
|
[ComboBoxItem(Caption = "每周保养",IsIgnore = true)]
|
|
|
|
|
Weekly,
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 每日
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ComboBoxItem(Caption = "每日保养")]
|
|
|
|
|
Daily,
|
2024-05-28 14:36:38 +00:00
|
|
|
|
}
|
|
|
|
|
}
|