zs
2024-10-31 d802233b73f02dddb09cd8c49fc2897c493b02f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace DataCapture_MA.Mes.Dto
{
    public class MesEquipmentStatus
    {
        /// <summary>
        /// 设备序列号
        /// </summary>
        public string EquipSerial { get; set; }
 
        /// <summary>
        /// 设备状态
        /// </summary>
        public string CurrentStatus { get; set; }
    }
}