12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- namespace EVCB_OCPP.Domain.Models.MainDb;
- public partial class VMachineCombind
- {
- public string Id { get; set; }
- public string ChargeBoxId { get; set; }
- public Guid CustomerId { get; set; }
- public int GunAmt { get; set; }
- public bool Online { get; set; }
- public decimal RatedPower { get; set; }
- public int ConnectionType { get; set; }
- public DateTime HeartbeatUpdatedOn { get; set; }
- public DateTime? OfflineOn { get; set; }
- public string ConnectorType { get; set; }
- public string VendorId { get; set; }
- public string ModelName { get; set; }
- public bool IsDelete { get; set; }
- public int Ttiatag { get; set; }
- public string Ocpp { get; set; }
- }
|