using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPASmartClient.AGV.Feedback
{
public class JobData
{
///
/// AGV编号
///
public string agvCode { get; set; }
///
/// 容器编号
///
public string containerCode { get; set; }
public string pointCode { get; set; }
///
/// 上料点位
///
public string startPointCode { get; set; }
///
/// 下料点位
///
public string targetPointCode { get; set; }
}
}