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.
31 lines
680 B
C#
31 lines
680 B
C#
using System;
|
|
|
|
namespace EntrustSettle.Model.Dtos
|
|
{
|
|
public class CtnBilltraceDto
|
|
{
|
|
/// <summary>
|
|
/// 箱号
|
|
/// </summary>
|
|
public string Cntrno { get; set; }
|
|
/// <summary>
|
|
/// 箱型
|
|
/// </summary>
|
|
public string CtnAll { get; set; }
|
|
/// <summary>
|
|
/// 提箱时间
|
|
/// </summary>
|
|
public DateTime? TiXiangTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 返空时间
|
|
/// </summary>
|
|
public DateTime? FanKongTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 堆存天数
|
|
/// </summary>
|
|
public int? StockpilingDays { get; set; }
|
|
}
|
|
}
|