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.
 
 
 
 
 

28 lines
535 B

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