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.

78 lines
2.1 KiB

using System;
using System.Collections.Generic;
using System.Collections;
using System.Text;
namespace HelloTeamcenter.hello
{
public class OriginMXL
{
public OriginMXL()
{
this.mxlname = "";
this.Mxlinfotable = new Hashtable();
this.Mxldatatable = new Hashtable();
this.Mxltctable = new Hashtable();
this.Mxlisbomtable = new Hashtable();
this.Mxlupdatetable = new Hashtable();
this.Mxltypetable = new Hashtable();
}
private string mxlname; //明细栏块参照名
public string Mxlname
{
get { return mxlname; }
set { mxlname = value; }
}
private Hashtable mxlinfotable = null; //块参照上所有信息<CAD属性名,CAD属性值>
public Hashtable Mxlinfotable
{
get { return mxlinfotable; }
set { mxlinfotable = value; }
}
private Hashtable mxldatatable = null; // <CAD属性名,CAD属性值>
public Hashtable Mxldatatable
{
get { return mxldatatable; }
set { mxldatatable = value; }
}
private Hashtable mxltctable = null; // <CAD属性名,TC属性名>
public Hashtable Mxltctable
{
get { return mxltctable; }
set { mxltctable = value; }
}
private Hashtable mxlisbomtable = null; // <CAD属性名,是否是bomline属性>
public Hashtable Mxlisbomtable
{
get { return mxlisbomtable; }
set { mxlisbomtable = value; }
}
private Hashtable mxlupdatetable = null;// <CAD属性名,是否是需要更新的bomline属性>
public Hashtable Mxlupdatetable
{
get { return mxlupdatetable; }
set { mxlupdatetable = value; }
}
private Hashtable mxltypetable = null; //<CAD属性名,TC类型名>
public Hashtable Mxltypetable
{
get { return mxltypetable; }
set { mxltypetable = value; }
}
}
}