using djy.Model.Ams;
using djy.Model.Isf;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace djy.Model.IsfDto
{
public class ISFDto
{
public ISFDto()
{
this.IsDel = false;
}
public string GID { get; set; }
public string UserID { get; set; }
public string UserName { get; set; }
public string CompID { get; set; }
public string CompName { get; set; }
///
/// 提单号
///
public string MBLNO { get; set; }
///
/// 类型(1.ISF5 2.ISF10)
///
public string InFoType { get; set; }
///
/// 卸货港代码
///
public string DischargeHarbourCode { get; set; }
///
/// 卸货港
///
public string DischargeHarbourName { get; set; }
///
/// 交货地代码
///
public string DeliveryHarbourCode { get; set; }
///
/// 交货地
///
public string DeliveryHarbourName { get; set; }
///
/// 贸易类型代码
///
public string ShipmentTypeCode { get; set; }
///
/// 贸易类型
///
public string ShipmentTypeName { get; set; }
///
/// HSTCode多个用英文逗号隔开
///
public string HstCode { get; set; }
///
/// 提单类型CODE
///
public string BlTypeCode { get; set; }
///
/// 提单类型
///
public string BlTypeName { get; set; }
public DateTime CreateTime { get; set; }
public DateTime? LastUpdate { get; set; }
public bool? IsDel { get; set; }
///
/// 申报状态
///
public string ReportState { get; set; }
///
/// 匹配状态
///
public string MateState { get; set; }
///
/// 最新通知
///
public string NewNotice { get; set; }
public List companyList { get; set; }
public List HistoryDto { get; set; }
}
}