#001 初版提交

This commit is contained in:
HM-CN\zhengxuan.zhang
2025-08-04 13:03:33 +08:00
commit 1857eea8a4
390 changed files with 356175 additions and 0 deletions
+51
View File
@@ -0,0 +1,51 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DAL
{
public class TToleranceModel
{
/// <summary>
/// Id
/// </summary>
public int? Id { get; set; }
/// <summary>
/// 车身类型
/// </summary>
public string CarType { get; set; }
/// <summary>
/// MeasurePointName
/// </summary>
public string MeasurePointName { get; set; }
/// <summary>
/// DimensionName
/// </summary>
public string DimensionName { get; set; }
/// <summary>
/// TolLower
/// </summary>
public double TolLower { get; set; }
/// <summary>
/// TolUpper
/// </summary>
public double TolUpper { get; set; }
/// <summary>
/// Remark 备注
/// </summary>
public string Remark { get; set; }
/// <summary>
/// CreateTime 测量时间
/// </summary>
public string CreateTime { get; set; }
}
}