mirror of
https://github.com/nsnail/NetAdmin.git
synced 2025-05-01 02:22:51 +08:00
26 lines
496 B
C#
26 lines
496 B
C#
using NetAdmin.Domain.Attributes;
|
|
|
|
namespace NetAdmin.Domain.Enums.Sys;
|
|
|
|
/// <summary>
|
|
/// 计划作业状态
|
|
/// </summary>
|
|
[Export]
|
|
public enum JobStatues
|
|
{
|
|
/// <summary>
|
|
/// 空闲
|
|
/// </summary>
|
|
[Indicator(nameof(Indicates.Success))]
|
|
[ResourceDescription<Ln>(nameof(Ln.空闲))]
|
|
Idle = 1
|
|
|
|
,
|
|
|
|
/// <summary>
|
|
/// 运行
|
|
/// </summary>
|
|
[Indicator(nameof(Indicates.Warning))]
|
|
[ResourceDescription<Ln>(nameof(Ln.运行))]
|
|
Running = 2
|
|
} |