using System; using System.Collections.Generic; using System.Text; namespace CoreEntity.Entity { [Serializable] public class Mem_Payplatform { private int _payplatformkey; private string _payplatformname; private string _payplatformcode; private int _parentpayplatformkey; private string _haslowlevel; private DateTime _creationtime; public Mem_Payplatform() { } public int PayPlatFormKey { get { return _payplatformkey; } set { _payplatformkey = value; } } public string PayPlatFormName { get { return _payplatformname; } set { _payplatformname = value; } } public string PayPlatFormCode { get { return _payplatformcode; } set { _payplatformcode = value; } } public int ParentPayPlatFormKey { get { return _parentpayplatformkey; } set { _parentpayplatformkey = value; } } public string HasLowLevel { get { return _haslowlevel; } set { _haslowlevel = value; } } public DateTime CreationTime { get { return _creationtime; } set { _creationtime = value; } } } }