chr
2024-08-07 22beee93f14d042aa184148c53efb79e23416526
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
namespace PdmSwPlugin.Common.Constants
{
    /// <summary>
    /// 图纸参数名
    /// </summary>
    public class PropertyName
    {
        // 图号,物料编码
        public static readonly string PART_NO = "DrawNo";
        // 物料型号
        public static readonly string PART_MODEL = "DRAWSIZE";
        // 物料名称
        public static readonly string PART_NAME = "PARTNAME";
        // 加工件类型
        public static readonly string JGJ_TYPE = "jgjlx";
        // 材料名称
        public static readonly string STUFF_TYPE = "MATERIAL";
        // 表面处理
        public static readonly string SURFACE_TYPE = "Finished";
        // 热处理
        public static readonly string HEAT_TYPE = "HEAT TREATMENT";
    }
 
    public class BomType {
        public static readonly string XC_SUFFIX = "-XC";
        public static readonly string MN_SUFFIX = "-MN";
    }
}