using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using WIDESEA_DTO.Basic;
|
|
namespace WIDESEA_External.Model
|
{
|
/// <summary>
|
/// MES退料空托接收通知
|
/// </summary>
|
public class MESRecepNoticeModel
|
{
|
public List<RecepNotice> WorkCentreEmptyPalletNotice { get; set; }
|
}
|
public class RecepNotice
|
{
|
/// <summary>
|
/// 周转位位置编码
|
/// </summary>
|
public string LocationCode { get; set; }
|
/// <summary>
|
/// 呼叫ID
|
/// </summary>
|
public string CallId { get; set; }
|
/// <summary>
|
/// 接驳完成标记
|
/// </summary>
|
public bool CompleteFlag { get; set; }
|
}
|
|
}
|