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.
 
 
 
 
 

22 lines
521 B

using System.ComponentModel;
namespace CK.SCP.Models.Enums
{
public enum VinState
{
[Description("已收货")]
Received = 0,
[Description("部分收货")]
Partial = 111,
[Description("已发货")]
Delivered = 222,
[Description("销售中")]
Selling = 300,
[Description("已销售")]
Sold = 333,
[Description("已比对")]
Balanced = 999,
[Description("不存在数据")]
DataNotFound = -1,
}
}