123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace EVCB_OCPP.TaskScheduler.Models
- {
- public class Transaction
- {
-
- public int Id { get; set; }
-
-
-
- public Guid CustomerId { get; set; }
-
-
-
- public byte ConnectorId { get; set; }
-
-
-
- public int TransactionId { get; set; }
-
-
-
- public string ChargeBoxId { get; set; }
-
-
-
- public string StartIdTag { get; set; }
-
-
-
- public string StopIdTag { get; set; }
-
-
-
- public DateTime StartTime { get; set; }
-
-
-
- public DateTime StopTime { get; set; }
-
-
-
- public int ReservationId { set; get; }
-
-
-
- public int StopReasonId { set; get; }
-
-
-
- public decimal MeterStart { get; set; }
-
-
-
- public decimal MeterStop { get; set; }
-
-
-
-
- public DateTime StartTransactionReportedOn { get; set; }
-
-
-
- public int RetryStartTransactionTimes { get; set; }
-
-
-
- public DateTime StopTransactionReportedOn { get; set; }
-
-
-
- public int RetryStopTransactionTimes { get; set; }
-
-
-
- public string ErrorMsg { set; get; }
-
-
-
- public string Fee { set; get; }
-
-
-
- public string Receipt { set; get; }
- public decimal Cost { set; get; }
- }
- }
|