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.

72 lines
1.7 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_midway", DisableSyncStructure = true)]
public partial class OpSeaeMidway {
/// <summary>
/// 编号
/// </summary>
[JsonProperty, Column(IsPrimary = true, IsIdentity = true)]
public int MID { get; set; }
/// <summary>
/// 业务编号
/// </summary>
[JsonProperty, Column(DbType = "varchar(36)", IsNullable = false)]
public string BSNO { get; set; }
/// <summary>
/// 到港日期
/// </summary>
[JsonProperty, Column(DbType = "smalldatetime")]
public DateTime? ETA { get; set; }
/// <summary>
/// 开船日期
/// </summary>
[JsonProperty, Column(DbType = "smalldatetime")]
public DateTime? ETD { get; set; }
/// <summary>
/// 运输中转数 二..五程
/// </summary>
[JsonProperty, Column(DbType = "varchar(4)", IsNullable = false)]
public string MIDNUM { get; set; }
/// <summary>
/// 卸货港
/// </summary>
[JsonProperty, Column(DbType = "varchar(60)")]
public string PORTDISCHAGE { get; set; }
/// <summary>
/// 起运港
/// </summary>
[JsonProperty, Column(DbType = "varchar(60)")]
public string PORTLOAD { get; set; }
/// <summary>
/// 运输方式 海运/空运/铁路/陆运
/// </summary>
[JsonProperty, Column(DbType = "varchar(50)")]
public string TRANTYPE { get; set; }
/// <summary>
/// 船名+航次
/// </summary>
[JsonProperty, Column(Name = "VESSEL_VOYNO", DbType = "varchar(60)")]
public string VESSELVOYNO { get; set; }
}
}