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.
114 lines
3.1 KiB
C#
114 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 = "VW_OP_SEA_ALL", DisableSyncStructure = true)]
|
|
public partial class VWOPSEAALL {
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string 报关行 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string 备注 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string 操作员 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,2)")]
|
|
public decimal? 尺码 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string 船公司 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string 船名 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? 费用状态 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string 分提单号 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(12)")]
|
|
public string 航次 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string 航线 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(7)")]
|
|
public string 会计期间 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(4000)")]
|
|
public string 集装箱 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? 件数 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(18,4)")]
|
|
public decimal? 净重 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public DateTime? 开船日期 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string 客服员 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string 揽货人 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(10)")]
|
|
public string 录入人 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "smalldatetime")]
|
|
public DateTime? 录入日期 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "numeric(20,4)")]
|
|
public decimal? 毛重 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string 目的地 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string 委托编号 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string 委托单位 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public int? 箱TEU { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string 卸货港 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(100)", IsNullable = false)]
|
|
public string 业务编号 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(8)", IsNullable = false)]
|
|
public string 业务类型 { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool? 业务状态 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(30)")]
|
|
public string 主提单号 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(60)")]
|
|
public string 装货港 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(8)")]
|
|
public string 装运方式 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(1024)", IsNullable = false)]
|
|
public string CUSTOMNO { get; set; }
|
|
|
|
}
|
|
|
|
}
|