using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace WIDESEA_DTO.AGV
|
{
|
public class AGVDTO
|
{
|
public string PalletCode { get; set; }
|
public string SourceAddress { get; set; }
|
public string Status { get; set; }
|
public int TaskNum { get; set; }
|
public string Message { get; set; }
|
public string WorkstationO { get; set; }
|
public string WorkstationT { get; set; }
|
}
|
}
|