PosMachinesTwo.cs 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.Models
  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 int OpId { get; set; }
  55. public int OpReserveKind { get; set; }
  56. }
  57. }