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.
61 lines
1.3 KiB
C#
61 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>
|
|
///
|
|
/// </summary>
|
|
public class TaskManageOrderVGMFeedBackInfo
|
|
{
|
|
/// <summary>
|
|
/// 集装箱号
|
|
/// </summary>
|
|
public string ContaNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 铅封号
|
|
/// </summary>
|
|
public string SealNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱型代码
|
|
/// </summary>
|
|
public string ContaType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 箱型
|
|
/// </summary>
|
|
public string ContaTypeName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 重量
|
|
/// </summary>
|
|
public decimal? KGS { get; set; }
|
|
|
|
/// <summary>
|
|
/// 皮重
|
|
/// </summary>
|
|
public decimal? TAREWEIGHT { get; set; }
|
|
|
|
/// <summary>
|
|
/// 称重重量
|
|
/// </summary>
|
|
public decimal? WEIGHKGS { get; set; }
|
|
|
|
/// <summary>
|
|
/// 称重方式
|
|
/// </summary>
|
|
public string WEIGHTYPE { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 主单号
|
|
/// </summary>
|
|
public string MBLNo { get; set; }
|
|
}
|
|
}
|