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