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.

45 lines
1.0 KiB
C#

using Myshipping.Application.Entity;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
/// <summary>
/// 任务VGM详情表
/// </summary>
[SugarTable("task_vgm_ctn_info")]
[Description("任务VGM集装箱")]
public class TaskVGMCtnInfo : TaskManageDbEntity
{
/// <summary>
/// VGM任务主键
/// </summary>
public string P_ID { get; set; }
/// <summary>
/// 箱号
/// </summary>
public string CNTRNO { get; set; }
/// <summary>
/// VGM重量
/// </summary>
public Nullable<decimal> VGM_WEIGHT { get; set; }
/// <summary>
/// VGM重量单位
/// </summary>
public string VGM_WEIGHT_UNIT { get; set; }
/// <summary>
/// VGM称重方式
/// </summary>
public string VGM_METHOD { get; set; }
}
}