Mem_Payplatform.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class Mem_Payplatform
  8. {
  9. private int _payplatformkey;
  10. private string _payplatformname;
  11. private int _payplatformcode;
  12. private int _parentpayplatformkey;
  13. private string _haslowlevel;
  14. private DateTime _creationtime;
  15. public Mem_Payplatform()
  16. {
  17. }
  18. public int PayPlatFormKey
  19. {
  20. get { return _payplatformkey; }
  21. set { _payplatformkey = value; }
  22. }
  23. public string PayPlatFormName
  24. {
  25. get { return _payplatformname; }
  26. set { _payplatformname = value; }
  27. }
  28. public int PayPlatFormCode
  29. {
  30. get { return _payplatformcode; }
  31. set { _payplatformcode = value; }
  32. }
  33. public int ParentPayPlatFormKey
  34. {
  35. get { return _parentpayplatformkey; }
  36. set { _parentpayplatformkey = value; }
  37. }
  38. public string HasLowLevel
  39. {
  40. get { return _haslowlevel; }
  41. set { _haslowlevel = value; }
  42. }
  43. public DateTime CreationTime
  44. {
  45. get { return _creationtime; }
  46. set { _creationtime = value; }
  47. }
  48. }
  49. }