using System; using System.Collections.Generic; using System.Text; namespace CoreEntity.Entity { [Serializable] public class Mem_Terminaldoc { private int _terminalkey; private string _terminalname; private string _terminaldesc; private int _parentterminalkey; private int _terminalcode; private bool _haslowlevel; private int _sourceterminalcode; private string _sourceterminalkey; public Mem_Terminaldoc() { } public int TerminalKey { get { return _terminalkey; } set { _terminalkey = value; } } public string TerminalName { get { return _terminalname; } set { _terminalname = value; } } public string TerminalDesc { get { return _terminaldesc; } set { _terminaldesc = value; } } public int ParentTerminalKey { get { return _parentterminalkey; } set { _parentterminalkey = value; } } public int TerminalCode { get { return _terminalcode; } set { _terminalcode = value; } } public bool HasLowLevel { get { return _haslowlevel; } set { _haslowlevel = value; } } public int SourceTerminalCode { get { return _sourceterminalcode; } set { _sourceterminalcode = value; } } public string SourceTerminalKey { get { return _sourceterminalkey; } set { _sourceterminalkey = value; } } } }