2025-11-16 19:33:01 +08:00

30 lines
674 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XPrintServer.Business.Enums
{
/// <summary>
/// 资源状态1未生产等待生产2:生产中3:已生产4已删除
/// </summary>
public enum ResourceStatus : int
{
None = 0,
/// <summary>
/// 未生产
/// </summary>
WaitProduction = 2,
InProduction = 3,
/// <summary>
/// 已生产
/// </summary>
ProductionFinish = 4,
/// <summary>
/// 已删除
/// </summary>
Delete = 11,
}
}