#010 修复解析入库,分发,和前端界面显示逻辑,增加 解析前判断是否已经处理过,增加clms授权检测

This commit is contained in:
HM-CN\zhengxuan.zhang
2025-08-19 16:07:09 +08:00
parent a15d9efd64
commit f865e8653c
32 changed files with 4905 additions and 1421 deletions
+35
View File
@@ -0,0 +1,35 @@
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; }
}
}
@@ -56,6 +56,5 @@
/// Remark 备注
/// </summary>
public string Remark { get; set; }
}
}