1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- 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; }
- }
- }
- }
|