namespace RGD.HaiRouAPI.HaiRouModel { /// /// 放容器完成通知 /// public class UnloadContainerFinish { private string SlotCode; private string ContainerCode; private string ContainerAttribute; public string slotCode { get => SlotCode; set => SlotCode = value; } public string containerCode { get => ContainerCode; set => ContainerCode = value; } public string containerAttribute { get => ContainerAttribute; set => ContainerAttribute = value; } } }