using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WIDESEAWCS_DTO.WMSInfo
{
public class ConveyorLineDTO
{
///
/// 任务号
///
public int? TaskNum { get; set; }
///
/// 托盘号
///
public string Barcode { get; set; }
///
/// 编号
///
public string stationCode { get; set; }
///
/// 重量
///
public ushort Weight { get; set; }
///
/// 货物规格
///
public int Spec { get; set; }
}
}