ProductionPlanDto.cs 686 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ProductionLineMonitor.Application.Services.HomeService.Dtos
  5. {
  6. public class ProductionPlanDto
  7. {
  8. public DateTime ShiftDate { get; set; }
  9. public string Shift { get; set; } = string.Empty;
  10. public string ModuleType { get; set; } = string.Empty;
  11. public int PlanCapacity { get; set; }
  12. }
  13. public class ProductionPlanDtoV1
  14. {
  15. public string ShiftDate { get; set; } = string.Empty;
  16. public string Shift { get; set; } = string.Empty;
  17. public string ModuleType { get; set; } = string.Empty;
  18. public int PlanCapacity { get; set; }
  19. }
  20. }