AGVPointDto.cs 356 Bytes
namespace HHECS.DAQServer.Dto.Equipment
{
    public class AGVPointDto
    {
        /// <summary>
        /// 设备唯一编号
        /// </summary>
        public string EquipmentSN { get; set; }

        /// <summary>
        /// 点位集合
        /// </summary>
        public List<string> BarCodes { get; set; } = new List<string>();
    }
}