using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
public class TaskBookingOrderCargoDto
{
///
/// 件数
///
public Nullable PKGs { get; set; }
///
/// 包装
///
public string KindPKGs { get; set; }
///
/// 毛重
///
public Nullable KGs { get; set; }
///
/// 尺码
///
public Nullable CBM { get; set; }
///
/// HS编码
///
public string HSCode { get; set; }
///
/// 唛头
///
public string Marks { get; set; }
///
/// 货描
///
public string Description { get; set; }
///
/// 备注
///
public string Remark { get; set; }
}
}