You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
1.1 KiB

namespace BrilliantSightClient.Model.GradeResult.Entity;
public class ViewData
{
public string InfoPath { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public string EName { get; set; } = string.Empty;
public string DevKey { get; set; } = string.Empty;
public string DevType { get; set; } = string.Empty;
public string AvgKey { get; set; } = string.Empty;
public string AvgType { get; set; } = string.Empty;
public string MaxKey { get; set; } = string.Empty;
public string MaxType { get; set; } = string.Empty;
public string MinKey { get; set; } = string.Empty;
public string MinType { get; set; } = string.Empty;
public string DtlKey { get; set; } = string.Empty;
public string DtlAttr { get; set; } = string.Empty;
public string DtlCt { get; set; } = string.Empty;
public string DtlType { get; set; } = string.Empty;
public int Shape { get; set; } = 0; // 按枚举或字典为准
public string Specifications { get; set; } = string.Empty; // 规格(P8-P8、P8-P8-S1)
public int RunMode { get; set; } = -1; // 0实验室、1工厂、-1通用
}