VMachineCombind.cs 771 B

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. namespace EVCB_OCPP.Domain.Models.MainDb;
  4. public partial class VMachineCombind
  5. {
  6. public string Id { get; set; }
  7. public string ChargeBoxId { get; set; }
  8. public Guid CustomerId { get; set; }
  9. public int GunAmt { get; set; }
  10. public bool Online { get; set; }
  11. public decimal RatedPower { get; set; }
  12. public int ConnectionType { get; set; }
  13. public DateTime HeartbeatUpdatedOn { get; set; }
  14. public DateTime? OfflineOn { get; set; }
  15. public string ConnectorType { get; set; }
  16. public string VendorId { get; set; }
  17. public string ModelName { get; set; }
  18. public bool IsDelete { get; set; }
  19. public int Ttiatag { get; set; }
  20. public string Ocpp { get; set; }
  21. }