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";
|
}
|
}
|