PosMachinesTwo.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.MainModels2
  4. {
  5. public partial class PosMachinesTwo
  6. {
  7. public int Id { get; set; }
  8. public int Sort { get; set; }
  9. public int QueryCount { get; set; }
  10. public int Status { get; set; }
  11. public DateTime? CreateDate { get; set; }
  12. public DateTime? UpdateDate { get; set; }
  13. public string SeoTitle { get; set; }
  14. public string SeoKeyword { get; set; }
  15. public string SeoDescription { get; set; }
  16. public int SourceStoreId { get; set; }
  17. public int OrderId { get; set; }
  18. public DateTime? RecycEndDate { get; set; }
  19. public string DeviceKind { get; set; }
  20. public string DeviceName { get; set; }
  21. public string BatchNo { get; set; }
  22. public string DeviceType { get; set; }
  23. public int PosSnType { get; set; }
  24. public int BindMerchantId { get; set; }
  25. public string ActivityList { get; set; }
  26. public decimal ScanQrTrade { get; set; }
  27. public decimal DebitCardTrade { get; set; }
  28. public int StoreId { get; set; }
  29. public int RecycBackCount { get; set; }
  30. public string PrizeParams { get; set; }
  31. public ulong IsVip { get; set; }
  32. public decimal CreditTrade { get; set; }
  33. public int BrandId { get; set; }
  34. public string UserNav { get; set; }
  35. public int BuyUserId { get; set; }
  36. public DateTime? TransferTime { get; set; }
  37. public string PosSn { get; set; }
  38. public int IsPurchase { get; set; }
  39. public int UserId { get; set; }
  40. public DateTime? BindingTime { get; set; }
  41. public DateTime? ActivationTime { get; set; }
  42. public string Detail { get; set; }
  43. public int ActivationState { get; set; }
  44. public int BindingState { get; set; }
  45. public int LeaderUserId { get; set; }
  46. public int PreUserId { get; set; }
  47. public int IsFirst { get; set; }
  48. public string DownFeeMan { get; set; }
  49. public string UpFeeMan { get; set; }
  50. public DateTime? DownFeeDate { get; set; }
  51. public DateTime? UpFeeDate { get; set; }
  52. public ulong DownFeeFlag { get; set; }
  53. public ulong UpFeeFlag { get; set; }
  54. public decimal OpReserve3 { get; set; }
  55. public decimal OpReserve2 { get; set; }
  56. public decimal OpReserve1 { get; set; }
  57. public int OpId { get; set; }
  58. public DateTime? RecycStartDate { get; set; }
  59. public string SourcePosSn { get; set; }
  60. public int RecycStatus { get; set; }
  61. }
  62. }