You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
haoliang-net/src/CncModels/Dto/Dashboard/MachineRankResponse.cs

24 lines
697 B
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
namespace CncModels.Dto.Dashboard
{
/// <summary>
/// 机床产量排行项
/// </summary>
public class MachineRankResponse
{
/// <summary>排名</summary>
public int Rank { get; set; }
/// <summary>机床ID</summary>
public int MachineId { get; set; }
/// <summary>机床名称</summary>
public string MachineName { get; set; }
/// <summary>当前NC程序名</summary>
public string Program { get; set; }
/// <summary>产量</summary>
public int Quantity { get; set; }
/// <summary>机床状态1=在线 0=离线</summary>
public int Status { get; set; }
}
}