using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application { public class TaskVGMShowDto: TaskVGMDto { /// /// 箱号 /// public string CntrNo { get; set; } /// /// VGM重量 /// public Nullable VGMWeight { get; set; } /// /// VGM重量单位 /// public string VGMWeightUnit { get; set; } /// /// VGM称重方式 /// public string VGMWeightMethod { get; set; } } }