1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace EVCB_OCPP.TaskScheduler.Models
- {
- public class EVSEOnlineRecord
- {
-
- public EVSEOnlineRecord()
- {
- TotalMinute = 0;
- OfflineTime= new DateTime(1991, 1, 1);
- StationId = "0";
- }
- public Guid CustomerId { set; get; }
- public string StationId { set; get; }
- public string ChargeBoxId { set; get; }
- public int HourIndex { set; get; }
- public int TotalMinute { set; get; }
- public DateTime OnlineTime { set; get; }
- public DateTime OfflineTime { set; get; }
-
- }
- }
|