You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
460 B
C#

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> carrierInfo { get; set; }
public object extra { get; set; }
}
}