You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
553 B
31 lines
553 B
namespace Win.Sfs.Shared.Enums
|
|
{
|
|
public enum EnumInventoryStatus
|
|
{
|
|
/// <summary>
|
|
/// 待检
|
|
/// </summary>
|
|
TBC = 0,
|
|
|
|
/// <summary>
|
|
/// 合格
|
|
/// </summary>
|
|
OK =1,
|
|
|
|
/// <summary>
|
|
/// 不合格
|
|
/// </summary>
|
|
NOK = 2,
|
|
|
|
/// <summary>
|
|
/// 待定
|
|
/// </summary>
|
|
HOLD = 3,
|
|
|
|
/// <summary>
|
|
/// 报废
|
|
/// </summary>
|
|
SCRAP = 4,
|
|
|
|
}
|
|
}
|