using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Op.Dtos
{
///
///
///
public class CntrNoRes
{
///
/// 主单id
///
public long BookingId { get; set; }
///
/// 返场时间
///
public DateTime? FCOpTime { get; set; }
///
/// 提箱时间
///
public DateTime? TXOpTime { get; set; }
///
/// 箱号
///
public string CNTRNO { get; set; }
}
}