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

46 lines
1.2 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.Serialization;
namespace ICSSoft.Entity
{
[DataContract]
public class AGVInput
{
public AGVInput()
{
}
public AGVInput(string taskType, Input inputs)
{
this.taskType = taskType;
this.inputs = inputs;
}
[DataMember]
public string taskType { get; set; }
[DataMember]
public Input inputs { get; set; }
public class Input
{
public Input(string source_storage_id, string target_storage_id, string empty_storage_id, string jb_container_type)
{
this.source_storage_id = source_storage_id;
this.target_storage_id = target_storage_id;
this.empty_storage_id = empty_storage_id;
this.jb_container_type = jb_container_type;
}
public string source_storage_id { get; set; }
public string target_storage_id { get; set; }
public string empty_storage_id { get; set; }
public string jb_container_type { get; set; }
}
}
}