12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace EVCB_OCPP.WSServer.Dto
- {
- public class ChargingPrice
- {
- public string StartTime { set; get; }
- public string EndTime { set; get; }
- public decimal Fee { set; get; }
- }
- public class ChargingBill
- {
- public string StartTime { set; get; }
- public string EndTime { set; get; }
- public decimal Total { set; get; }
- public decimal PeriodEnergy { set; get; }
- /// <summary>
- /// 費率
- /// </summary>
- public decimal Fee { set; get; }
- }
- }
|