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.
32 lines
695 B
C#
32 lines
695 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
public class TaskVGMShowDto: TaskVGMDto
|
|
{
|
|
/// <summary>
|
|
/// 箱号
|
|
/// </summary>
|
|
public string CntrNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// VGM重量
|
|
/// </summary>
|
|
public Nullable<decimal> VGMWeight { get; set; }
|
|
|
|
/// <summary>
|
|
/// VGM重量单位
|
|
/// </summary>
|
|
public string VGMWeightUnit { get; set; }
|
|
|
|
/// <summary>
|
|
/// VGM称重方式
|
|
/// </summary>
|
|
public string VGMWeightMethod { get; set; }
|
|
}
|
|
}
|