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.

87 lines
2.3 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_CTN_B", DisableSyncStructure = true)]
public partial class OPCTNB {
[JsonProperty, Column(Name = "CTN_ID", DbType = "varchar(50)", IsPrimary = true, IsNullable = false)]
public string CTNID { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? CBM { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string CNTRNO { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string CTNALL { get; set; }
[JsonProperty]
public int? CTNNUM { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string CTNSTATUS { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? KGS { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string KINDPKGS { get; set; }
[JsonProperty, Column(DbType = "varchar(50)")]
public string ORDNO { get; set; }
[JsonProperty]
public int? PKGS { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string REMARK { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string SEALNO { get; set; }
[JsonProperty, Column(DbType = "varchar(10)")]
public string StaVGM { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? TAREWEIGHT { get; set; }
[JsonProperty]
public int? TEU { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string VGMADDR { get; set; }
[JsonProperty, Column(DbType = "varchar(100)")]
public string VGMCONNCOM { get; set; }
[JsonProperty, Column(DbType = "varchar(60)")]
public string VGMEMAIL { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string WEIGHATTN { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string WEIGHDATE { get; set; }
[JsonProperty, Column(DbType = "numeric(18,4)")]
public decimal? WEIGHKGS { get; set; }
[JsonProperty, Column(DbType = "varchar(20)")]
public string WEIGHTEL { get; set; }
[JsonProperty, Column(DbType = "varchar(30)")]
public string WEIGHTYPE { get; set; }
}
}