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.
57 lines
1.3 KiB
C#
57 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
/// SI集装箱
|
|
/// </summary>
|
|
public class TaskSIFeedBackResultContaDto
|
|
{
|
|
/// <summary>
|
|
/// 集装箱号
|
|
/// </summary>
|
|
/// <example>RFCU2088064</example>
|
|
public string ContaNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 铅封号
|
|
/// </summary>
|
|
/// <example>T090518</example>
|
|
public string SealNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 件数
|
|
/// </summary>
|
|
/// <example>222</example>
|
|
public int PKGS { get; set; }
|
|
|
|
/// <summary>
|
|
/// 重量
|
|
/// </summary>
|
|
/// <example>1651</example>
|
|
public decimal? KGS { get; set; }
|
|
|
|
/// <summary>
|
|
/// 尺寸
|
|
/// </summary>
|
|
/// <example>9.67</example>
|
|
public decimal? CBM { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱型代码
|
|
/// </summary>
|
|
/// <example>20GP</example>
|
|
public string ContaType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱型
|
|
/// </summary>
|
|
/// <example>20GP</example>
|
|
public string ContaTypeName { get; set; }
|
|
}
|
|
}
|