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.
39 lines
1.3 KiB
C#
39 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace BookingJieFeng.DB.Model
|
|
{
|
|
[Table("t_op_ctn_edi")]
|
|
public class t_op_ctn_edi
|
|
{
|
|
[Key]
|
|
public int ctn_id { get; set; }
|
|
public string 编号 { get; set; }
|
|
public string 代码 { get; set; }
|
|
public string 尺寸 { get; set; }
|
|
public string 箱型 { get; set; }
|
|
public int 数量 { get; set; }
|
|
public int TEU { get; set; }
|
|
public string 表现形式 { get; set; }
|
|
public string 箱号 { get; set; }
|
|
public string 封号 { get; set; }
|
|
public int? 件数 { get; set; }
|
|
public string 包装 { get; set; }
|
|
public decimal? 重量 { get; set; }
|
|
public decimal? 尺码 { get; set; }
|
|
public string 货描 { get; set; }
|
|
public string 唛头 { get; set; }
|
|
public string PO { get; set; }
|
|
public string SKU { get; set; }
|
|
public string SKU描述 { get; set; }
|
|
public string 公害行UN号 { get; set; }
|
|
public string HTS号 { get; set; }
|
|
public string 原产国 { get; set; }
|
|
public decimal? 货值 { get; set; }
|
|
public string 箱子所有者 { get; set; }
|
|
}
|
|
} |