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.
 
 
 
 
 

24 lines
456 B

using System.ComponentModel;
namespace CK.SCP.Models.Enums
{
public enum PartType
{
[Description("采购件")]
B = 0,
[Description("自制件")]
M = 1,
[Description("客户指定")]
D = 2,
[Description("客户指定国外")]
DN = 21,
[Description("客户指定国内")]
DY = 22,
[Description("委外件")]
S = 3,
[Description("管理公司采购件")]
Y = 4
}
}