ReplaceConsumable.cs 396 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ProductionLineMonitor.Application.Services.LineService.Dtos
  5. {
  6. /// <summary>
  7. /// 换耗材
  8. /// </summary>
  9. public class ReplaceConsumable
  10. {
  11. public string Name { get; set; } = string.Empty;
  12. public int Count { get; set; }
  13. public double AccumulativeTime { get; set; }
  14. }
  15. }