using Org.BouncyCastle.Crypto.IO; using ProductionLineMonitor.Core.IRepositories; using ProductionLineMonitor.Core.Models; using ProductionLineMonitor.Core.Utils; using System; using System.Collections.Generic; using System.Configuration; using System.Linq; using System.Text; namespace ProductionLineMonitor.Application.Services.EnergyConsumptionService.Dtos { public class EnergyConsumptionDto { public string Date { get; set; } = string.Empty; /// /// 0:早班 1:夜班 /// public int Shift { get; set; } public int Capacity { get; set; } public double ElectricEnergy { get; set; } } }