EnergyConsumptionDto.cs 686 B

1234567891011121314151617181920212223
  1. using Org.BouncyCastle.Crypto.IO;
  2. using ProductionLineMonitor.Core.IRepositories;
  3. using ProductionLineMonitor.Core.Models;
  4. using ProductionLineMonitor.Core.Utils;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Configuration;
  8. using System.Linq;
  9. using System.Text;
  10. namespace ProductionLineMonitor.Application.Services.EnergyConsumptionService.Dtos
  11. {
  12. public class EnergyConsumptionDto
  13. {
  14. public string Date { get; set; } = string.Empty;
  15. /// <summary>
  16. /// 0:早班 1:夜班
  17. /// </summary>
  18. public int Shift { get; set; }
  19. public int Capacity { get; set; }
  20. public double ElectricEnergy { get; set; }
  21. }
  22. }