using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEA_Common
{
public class RequsetMsg
{
public string CLTM { get; set; }
}
public class CheckInfo
{
///
/// 编号
///
public string CLTM { get; set; }
///
/// 测量工件类型
/// 1-车轮
/// 2-制动盘
///
public string CheckType { get; set; }
///
/// 车型
///
public string CarType { get; set; }
///
/// 测量标准(新/旧) 1:旧 0 :新
///
public string Standards { get; set; }
///
/// 制造单位
///
public string MadeUnit { get; set; }
///
/// 毂孔等级
///
public string HubLevel { get; set; }
///
/// 是否测量
///
public bool IsCheck { get; set; }
///
/// 动拖属性 M-动 T-拖
///
public string MTType { get; set; }
}
}