using System.Collections.Generic; using Sln.Wcs.HikRoBotSdk.Dto.Common; namespace Sln.Wcs.HikRoBotSdk.Dto.EquipmentNotify { public class EquipmentNotifyDto { public string eqptCode { get; set; } public string taskCode { get; set; } public string actionStatus { get; set; } public string siteCode { get; set; } public List carrierInfo { get; set; } public object extra { get; set; } } }