1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- using System;
- using System.Collections.Generic;
- namespace EVCB_OCPP.Domain.Models.MainDb;
- public partial class TransactionRecord
- {
- public TransactionRecord()
- {
- StartIdTag = string.Empty;
- StopIdTag = string.Empty;
- StartTime = new DateTime(1991, 1, 1);
- StopTime = new DateTime(1991, 1, 1);
- ReservationId = -1;
- BillingDone = false;
- CreatedOn = new DateTime(1991, 1, 1);
- UpdatedOn = new DateTime(1991, 1, 1);
- StartTransactionReportedOn = new DateTime(1991, 1, 1);
- StopTransactionReportedOn = new DateTime(1991, 1, 1);
- ErrorMsg = string.Empty;
- StartSoc = string.Empty;
- StopSoc = string.Empty;
- Evccid = string.Empty;
- NotifyPnC = false;
- }
- public int Id { get; set; }
- public DateTime StartTime { get; set; }
- public DateTime StopTime { get; set; }
- public Guid CustomerId { get; set; }
- public byte ConnectorId { get; set; }
- public decimal MeterStart { get; set; }
- public decimal MeterStop { get; set; }
- public DateTime CreatedOn { get; set; }
- public DateTime UpdatedOn { get; set; }
- public DateTime StartTransactionReportedOn { get; set; }
- public int RetryStartTransactionTimes { get; set; }
- public DateTime StopTransactionReportedOn { get; set; }
- public string ErrorMsg { get; set; }
- public string StartIdTag { get; set; }
- public string StopIdTag { get; set; }
- public int ReservationId { get; set; }
- public int StopReasonId { get; set; }
- public string ChargeBoxId { get; set; }
- public int RetryStopTransactionTimes { get; set; }
- public bool UploadedtoTtia { get; set; }
- public decimal Cost { get; set; }
- public string Fee { get; set; }
- public string Receipt { get; set; }
- public bool BillingDone { get; set; }
- public string StopReason { get; set; }
- public string StartSoc { get; set; }
- public string StopSoc { get; set; }
- public bool NotifyPnC { get; set; }
- public string Evccid { get; set; }
- }
|