using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WIDESEA_DTO.Basic;
namespace WIDESEA_External.Model
{
///
/// AGV小车到达通知
///
public class MESAvgArriveNoticeModel
{
public List SD_WorkCentreAgvArriveNoticeInfo { get; set; }
}
public class AgvArriveNotice
{
///
/// 领料明细ID
///
public int DispatchPlanMaterialId { get; set; }
///
/// 加工中心编码
///
public string WorkCentreCode { get; set; }
///
/// 周转位位置编码
///
public string LocationCode { get; set; }
///
/// 呼叫ID
///
public string CallId { get; set; }
}
}