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.

108 lines
2.8 KiB
C#

using FreeSql.DataAnnotations;
using Newtonsoft.Json;
using System;
using System.ComponentModel.DataAnnotations;
namespace djy.Model.Isf
{
[JsonObject(MemberSerialization.OptIn), Table(Name = "ISF_Master", DisableSyncStructure = true)]
public class ISF_Master
{
[MaxLength(50)]
[JsonProperty, Column(IsPrimary = true, IsNullable = false)]
public string GID { get; set; }
[MaxLength(50)]
public string UserID { get; set; }
[MaxLength(50)]
public string UserName { get; set; }
[MaxLength(50)]
public string CompID { get; set; }
[MaxLength(100)]
public string CompName { get; set; }
/// <summary>
/// 提单号
/// </summary>
[MaxLength(50)]
public string MBLNO { get; set; }
/// <summary>
/// 类型(1.ISF5 2.ISF10)
/// </summary>
[MaxLength(50)]
public string InFoType { get; set; }
/// <summary>
/// 卸货港代码
/// </summary>
[MaxLength(50)]
public string DischargeHarbourCode { get; set; }
/// <summary>
/// 卸货港
/// </summary>
[MaxLength(50)]
public string DischargeHarbourName { get; set; }
/// <summary>
/// 交货地代码
/// </summary>
[MaxLength(50)]
public string DeliveryHarbourCode { get; set; }
/// <summary>
/// 交货地
/// </summary>
[MaxLength(50)]
public string DeliveryHarbourName { get; set; }
/// <summary>
/// 贸易类型代码
/// </summary>
[MaxLength(50)]
public string ShipmentTypeCode { get; set; }
/// <summary>
/// 贸易类型
/// </summary>
[MaxLength(50)]
public string ShipmentTypeName { get; set; }
/// <summary>
/// HSTCode多个用英文逗号隔开
/// </summary>
[MaxLength(200)]
public string HstCode { get; set; }
/// <summary>
/// 提单类型CODE
/// </summary>
[MaxLength(50)]
public string BlTypeCode { get; set; }
/// <summary>
/// 提单类型
/// </summary>
[MaxLength(50)]
public string BlTypeName { get; set; }
public DateTime CreateTime { get; set; }
public DateTime? LastUpdate { get; set; }
public bool? IsDel { get; set; }
/// <summary>
/// 申报状态
/// </summary>
public string ReportState { get; set; }
/// <summary>
/// 匹配状态
/// </summary>
public string MateState { get; set; }
/// <summary>
/// 最新通知
/// </summary>
public string NewNotice { get; set; }
}
}