分支自 SuZhouGuanHong/TaiYuanTaiZhong

huanghongfeng
2024-07-09 a8e17feaaaafd549c81ea7e18f5c968af28d9391
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_Comm
{
    public class WheelDBItem
    {
        /// <summary>
        /// 对象集合
        /// </summary>
        public static List<WheelDBItem> VK4WheelDBItem = new List<WheelDBItem>();
 
        /// <summary>
        /// 对象集合
        /// </summary>
        public static List<WheelDBItem> VK5WheelDBItem = new List<WheelDBItem>();
 
        /// <summary>
        /// 编号
        /// </summary>
        public string StackerNo { get; set; }
 
        /// <summary>
        /// 车轮SN号
        /// </summary>
        public string R_wheel_SN { get; set; }
 
        /// <summary>
        /// 车轮类型
        /// </summary>
        public Int16 R_wheel_type { get; set; }
 
        /// <summary>
        /// 车轮状态
        /// </summary>
        public byte R_part_status { get; set; }
 
        /// <summary>
        /// 车轮工艺
        /// </summary>
        public byte R_part_process { get; set; }
    }
}