Sign in

MES / DataAcquisition · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • DataAcquisition
  • HHECS.DAQServer
  • Dto
  • Equipment
  • AGVPointDto.cs
  • 调整AGV点位更新接口
    816082ea
    唐召明 authored
    2024-09-30 08:30:30 +0800  
    Browse Code »
AGVPointDto.cs 356 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
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>();
    }
}