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.
144 lines
4.0 KiB
C#
144 lines
4.0 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_sub_seaorder_arrival", DisableSyncStructure = true)]
|
|
public partial class OpSubSeaorderArrival {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
|
|
public string GID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? AMOUNTJPY { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? AMOUNTUSD { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string BLFRT { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime BSDATE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string CBM { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(4000)")]
|
|
public string CNTRTOTAL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(2000)")]
|
|
public string DESCRIPTION { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(300)")]
|
|
public string DOADDR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "smalldatetime")]
|
|
public DateTime? ETA { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "smalldatetime")]
|
|
public DateTime? ETD { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,4)")]
|
|
public decimal? EXCHANGERATE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "smalldatetime")]
|
|
public DateTime? FREETIME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string GOODSNAME { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(600)")]
|
|
public string GROSSWEIGHT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string HBLNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string INPUTBY { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(12)")]
|
|
public string ISSUETYPE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string KGS { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string KINDPKGS { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? MARKCOUNT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(600)")]
|
|
public string MARKS { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string MBLNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(600)")]
|
|
public string MEASUREMENT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(600)")]
|
|
public string MESSRS { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(120)")]
|
|
public string NOPKGS { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string OFFICEADDR { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
|
|
public string ORDNO { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? PKGS { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string PLACEDELIVERY { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string PLACEDELIVERYID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string PlACERECEIPT { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string PORTDISCHARGE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string PORTDISCHARGEID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string PORTLOAD { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(36)")]
|
|
public string PORTLOADID { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string REFNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string REMARK { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(50)")]
|
|
public string SERVICE { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)")]
|
|
public string TOTALNO { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string VESSEL { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(12)")]
|
|
public string VOYNO { get; set; }
|
|
|
|
}
|
|
|
|
}
|