using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DAL
{
public class TToleranceModel
{
///
/// Id
///
public int? Id { get; set; }
///
/// 车身类型
///
public string CarType { get; set; }
///
/// MeasurePointName
///
public string MeasurePointName { get; set; }
///
/// DimensionName
///
public string DimensionName { get; set; }
///
/// TolLower
///
public double TolLower { get; set; }
///
/// TolUpper
///
public double TolUpper { get; set; }
///
/// Remark 备注
///
public string Remark { get; set; }
///
/// CreateTime 测量时间
///
public string CreateTime { get; set; }
}
}