123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- 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;
- private int _SourceTerminalSort;
- 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; }
- }
- public int SourceTerminalSort
- {
- get { return _SourceTerminalSort; }
- set { _SourceTerminalSort = value; }
- }
- }
- }
|