PosMachines.cs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.KxsMainModels
  4. {
  5. public partial class PosMachines
  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 int Version { get; set; }
  12. public DateTime? CreateDate { get; set; }
  13. public DateTime? UpdateDate { get; set; }
  14. public string CreateMan { get; set; }
  15. public string UpdateMan { get; set; }
  16. public string SeoTitle { get; set; }
  17. public string SeoKeyword { get; set; }
  18. public string SeoDescription { get; set; }
  19. public int SourceStoreId { get; set; }
  20. public int OrderId { get; set; }
  21. public DateTime? RecycEndDate { get; set; }
  22. public string DeviceKind { get; set; }
  23. public string DeviceName { get; set; }
  24. public string BatchNo { get; set; }
  25. public string DeviceType { get; set; }
  26. public int PosSnType { get; set; }
  27. public int BindMerchantId { get; set; }
  28. public string ActivityList { get; set; }
  29. public decimal ScanQrTrade { get; set; }
  30. public decimal DebitCardTrade { get; set; }
  31. public int StoreId { get; set; }
  32. public int RecycBackCount { get; set; }
  33. public string PrizeParams { get; set; }
  34. public ulong IsVip { get; set; }
  35. public decimal CreditTrade { get; set; }
  36. public int BrandId { get; set; }
  37. public string UserNav { get; set; }
  38. public int BuyUserId { get; set; }
  39. public DateTime? TransferTime { get; set; }
  40. public string PosSn { get; set; }
  41. public ulong IsPurchase { get; set; }
  42. public int UserId { get; set; }
  43. public DateTime? BindingTime { get; set; }
  44. public DateTime? ActivationTime { get; set; }
  45. public string Detail { get; set; }
  46. public int ActivationState { get; set; }
  47. public int BindingState { get; set; }
  48. }
  49. }