Files
CJLR-Analysis/Analysis/DAL/Model/CJLR_MeaDataModel.cs
T

35 lines
1.1 KiB
C#

using System;
namespace NSAnalysis.Model
{
public class CJLR_MeaDataModel
{
public int Id { get; set; }
public string PointName { get; set; }
public string GroupName { get; set; }
public string ProductNum { get; set; }
public string Model { get; set; }
public string Station { get; set; }
public string Method { get; set; }
public string Standard { get; set; }
public string DimensionName { get; set; }
public string DimensionValue { get; set; }
public string DimensionUnit { get; set; }
public bool IsManual { get; set; }
public string Classification { get; set; }
public string ToleranceName0 { get; set; }
public string ToleranceLower0 { get; set; }
public string ToleranceUpper0 { get; set; }
public string ToleranceName1 { get; set; }
public string ToleranceLower1 { get; set; }
public string ToleranceUpper1 { get; set; }
public string NominalValue { get; set; }
public DateTime MeasureDate { get; set; }
public TimeSpan MeasureTime { get; set; }
public int SequenceNum { get; set; }
public DateTime CreatedAt { get; set; }
// 位置
public string Position { get; set; }
}
}