using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_DTO.WMS
{
///
/// 出入库完成反馈(WCS推送完成状态给WMS)
///
public class WMSInOutBoundCompleteFeedback
{
///
/// 任务号
///
public string taskCode { get; set; }
///
/// 容器编码
///
public string containerCode { get; set; }
///
/// 起点位置
///
public string fromStationCode { get; set; }
///
/// 终点位置
///
public string toLocationCode { get; set; }
///
/// 业务类型
/// 1-面料;2-成品;3-裁剪;4-配套
///
public int? businessType { get; set; }
///
/// 完成类型
/// 1-自动完成;2-手动完成
///
public int completeType { get; set; } = 1;
}
}