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.
111 lines
3.1 KiB
C#
111 lines
3.1 KiB
C#
using FreeSql.DatabaseModel;using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Threading.Tasks;
|
|
using Newtonsoft.Json;
|
|
using FreeSql.DataAnnotations;
|
|
|
|
namespace djy.Model {
|
|
|
|
[JsonObject(MemberSerialization.OptIn), Table(Name = "op_seae_vgm_ctn", DisableSyncStructure = true)]
|
|
public partial class OpSeaeVgmCtn {
|
|
|
|
[JsonProperty, Column(Name = "ctn_id", DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
|
|
public string CtnId { get; set; } = Guid.NewGuid().ToString().ToUpper();
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,3)")]
|
|
public decimal? CBM { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string ChengZhongFangShi { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string ChengZhongShiJian { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,3)")]
|
|
public decimal? ChengZhongZhongLiang { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string CNTRNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string CTN { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)", IsNullable = false)]
|
|
public string CTNALL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(4)", IsNullable = false)]
|
|
public string CTNCODE { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int CTNNUM { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(16)")]
|
|
public string CTNOWNER { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(2)")]
|
|
public string CTOFORIGIN { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(2000)")]
|
|
public string DESCRIPTION { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(6)")]
|
|
public string DUNNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,3)")]
|
|
public decimal? GOODVALUE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string HTS { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,3)")]
|
|
public decimal? KGS { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string KINDPKGS { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(600)")]
|
|
public string MARKS { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)", IsNullable = false)]
|
|
public string MFNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,3)")]
|
|
public decimal PIZHONG { get; set; } = 0M;
|
|
|
|
[JsonProperty]
|
|
public int? PKGS { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string PO { get; set; }
|
|
|
|
[JsonProperty, Column(Name = "remark", DbType = "varchar(100)")]
|
|
public string Remark { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string SEALNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)]
|
|
public string ShiFengRen { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(2)")]
|
|
public string SIZE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(15)")]
|
|
public string SKU { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(40)")]
|
|
public string SKUDESCRIP { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int TEU { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? ZhongKongBiaoShi { get; set; }
|
|
|
|
}
|
|
|
|
}
|