刘磊
2025-04-19 823752496e2a4cdb6a1fb36227cd15b8b7135336
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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
    {
        /// <summary>
        /// 编号
        /// </summary>
        public string CLTM { get; set; }   
        
        /// <summary>
        /// 测量工件类型
        /// 1-车轮 
        /// 2-制动盘
        /// </summary>
        public string CheckType { get; set; }   
 
        /// <summary>
        /// 车型
        /// </summary>
        public string CarType { get; set; }
 
        /// <summary>
        /// 测量标准(新/旧)   1:旧  0 :新
        /// </summary>
        public string Standards { get; set; }
 
        /// <summary>
        /// 制造单位
        /// </summary>
        public string MadeUnit {  get; set; }
 
        /// <summary>
        /// 毂孔等级
        /// </summary>
        public string HubLevel {  get; set; }
 
        /// <summary>
        /// 是否测量  
        /// </summary>
        public bool IsCheck { get; set; }
 
        /// <summary>
        /// 动拖属性  M-动 T-拖
        /// </summary>
        public string MTType { get; set; }   
    }
}