using System; using System.Collections.Generic; using System.Text; namespace ProductionLineMonitor.Application.Services.LineService.Dtos { /// /// 换耗材 /// public class ReplaceConsumable { public string Name { get; set; } = string.Empty; public int Count { get; set; } public double AccumulativeTime { get; set; } } }