You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
693 B
C#
33 lines
693 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.WMS.Core.Op.Dtos
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public class CntrNoRes
|
|
{
|
|
/// <summary>
|
|
/// 主单id
|
|
/// </summary>
|
|
public long BookingId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 返场时间
|
|
/// </summary>
|
|
public DateTime? FCOpTime { get; set; }
|
|
/// <summary>
|
|
/// 提箱时间
|
|
/// </summary>
|
|
public DateTime? TXOpTime { get; set; }
|
|
/// <summary>
|
|
/// 箱号
|
|
/// </summary>
|
|
public string CNTRNO { get; set; }
|
|
}
|
|
}
|