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; //块参照上所有信息 public Hashtable Mxlinfotable { get { return mxlinfotable; } set { mxlinfotable = value; } } private Hashtable mxldatatable = null; // public Hashtable Mxldatatable { get { return mxldatatable; } set { mxldatatable = value; } } private Hashtable mxltctable = null; // public Hashtable Mxltctable { get { return mxltctable; } set { mxltctable = value; } } private Hashtable mxlisbomtable = null; // public Hashtable Mxlisbomtable { get { return mxlisbomtable; } set { mxlisbomtable = value; } } private Hashtable mxlupdatetable = null;// public Hashtable Mxlupdatetable { get { return mxlupdatetable; } set { mxlupdatetable = value; } } private Hashtable mxltypetable = null; // public Hashtable Mxltypetable { get { return mxltypetable; } set { mxltypetable = value; } } } }