zs
2024-10-10 ca0e376c388694193fa4e734b8c3aa6571f656c0
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; }
    }
}