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
28 lines
535 B
4 years ago
|
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
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|