using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Op.Dtos { /// /// 海运出库提单箱信息-请求实体 /// public class SeaExportBillManageCtnReq { /// /// 主键Id /// public long Id { get; set; } /// /// 业务Id /// public long Pid { get; set; } /// /// 尺寸 /// public string Size { get; set; } /// /// 箱型 /// public string Ctn { get; set; } /// /// 箱量 /// public int? CtnNum { get; set; } /// /// 箱型Id /// public long CtnId { get; set; } /// /// 表现形式 /// public string CtnAll { get; set; } /// /// 箱号 /// public string CntrNo { get; set; } /// /// 封号 /// public string SealNo { get; set; } /// /// 件数 /// public int? PKGS { get; set; } /// /// 毛重 /// public decimal? KGS { get; set; } /// /// 尺码 /// public decimal? CBM { get; set; } /// /// 箱皮重 /// public decimal? TareWeight { get; set; } /// /// 包装Code /// public string KindPkgs { get; set; } /// /// 包装 t_code_package /// public string KindPkgsName { get; set; } /// /// 备注 /// public string Note { get; set; } } }