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.
18 lines
369 B
18 lines
369 B
1 year ago
|
using System.ComponentModel;
|
||
|
|
||
|
namespace CK.SCP.Models.Enums
|
||
|
{
|
||
|
public enum StockState
|
||
|
{
|
||
|
[Description("待检")]
|
||
|
Inspect=0,
|
||
|
[Description("合格")]
|
||
|
Valid = 1,
|
||
|
[Description("不合格")]
|
||
|
InValid = 2,
|
||
|
[Description("过期")]
|
||
|
Overdue = 3,
|
||
|
[Description("待判定")]
|
||
|
Hold = 4,
|
||
|
}
|
||
|
}
|