KxsMachine.cs 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MySystem.JavaProductModels
  4. {
  5. public partial class KxsMachine
  6. {
  7. public int Id { get; set; }
  8. public string BatchNo { get; set; }
  9. public int PreUserId { get; set; }
  10. public int ReturnStatus { get; set; }
  11. public decimal? SourcePledge { get; set; }
  12. public int IsOpAct { get; set; }
  13. public int IsSupply { get; set; }
  14. public int DownFeeFlag { get; set; }
  15. public int PartnerId { get; set; }
  16. public int LeaderId { get; set; }
  17. public string WarehouseName { get; set; }
  18. public int UpFeeFlag { get; set; }
  19. public int IsFirst { get; set; }
  20. public int Status { get; set; }
  21. public int BindStatus { get; set; }
  22. public int IsAct { get; set; }
  23. public decimal MachineRatio { get; set; }
  24. public string BoxSn { get; set; }
  25. public DateTime? DeliveryTime { get; set; }
  26. public DateTime? ActTime { get; set; }
  27. public DateTime? BindTime { get; set; }
  28. public string AllotPath { get; set; }
  29. public decimal CashPledge { get; set; }
  30. public int MachineType { get; set; }
  31. public DateTime? RecycleEndTime { get; set; }
  32. public int RecycleStatus { get; set; }
  33. public int BrandId { get; set; }
  34. public int MerchantId { get; set; }
  35. public int UserId { get; set; }
  36. public int WarehouseId { get; set; }
  37. public string PosSn { get; set; }
  38. public int Version { get; set; }
  39. public int DelFlag { get; set; }
  40. public DateTime? UpdateTime { get; set; }
  41. public DateTime? CreateTime { get; set; }
  42. public decimal ScanQrTrade { get; set; }
  43. public decimal DebitCardTrade { get; set; }
  44. public decimal CreditTrade { get; set; }
  45. public string SourcePosSn { get; set; }
  46. public string DevLocation { get; set; }
  47. public decimal SecondFee { get; set; }
  48. public int PosType { get; set; }
  49. public string DeviceType { get; set; }
  50. public string DeviceCode { get; set; }
  51. }
  52. }