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.
DS7/DispatchWeb/Models/RespGetOpSeae.cs

96 lines
3.1 KiB
C#

2 years ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace DispatchWeb.Models
{
public class RespGetOpSeae
{
public bool Success { get; set; }
public string Message { get; set; }
public List<MsOpSeae> Data { get; set; }
public int Total { get; set; }
}
public class MsOpSeae
{
public MsOpSeae()
{
this.BSNO = string.Empty;
this.VESSEL = string.Empty;
this.VOYNO = string.Empty;
this.MBLNO = string.Empty;
this.INVNO = string.Empty;
this.ETD = string.Empty;
this.ATD = string.Empty;
this.CNTRTOTAL = string.Empty;
this.KGS = string.Empty;
this.YARD = string.Empty;
this.CNTRSEALNO = string.Empty;
this.CUSTOMNO = string.Empty;
this.FACTORYADDR = string.Empty;
this.CARGODATE = string.Empty;
this.STA_ZXFC = string.Empty;
this.STA_HGFX = string.Empty;
this.ETA = string.Empty;
this.SERVICECONTRACTNO = string.Empty;
this.LAST_STATUS = string.Empty;
this.KaiChuanRi = string.Empty;
}
public string BSNO { get; set; }
public string VESSEL { get; set; }
public string VOYNO { get; set; }
public string MBLNO { get; set; }
public string INVNO { get; set; }
public string ETD { get; set; }
public string ATD { get; set; }
public string CNTRTOTAL { get; set; }
public string KGS { get; set; }
public string YARD { get; set; }
public string CNTRSEALNO { get; set; }
public string CUSTOMNO { get; set; }
public string FACTORYADDR { get; set; }
public string CARGODATE { get; set; }
public string STA_ZXFC { get; set; }
public string STA_HGFX { get; set; }
public string ETA { get; set; }
public string SERVICECONTRACTNO { get; set; }
public string LAST_STATUS { get; set; }
public string KaiChuanRi { get; set; }
}
public class RespReportOpSeae
{
public bool Success { get; set; }
public string Message { get; set; }
public List<MsOpSeaeReport> Data { get; set; }
}
public class MsOpSeaeReport
{
public MsOpSeaeReport()
{
this.BSNO = string.Empty;
this.MBLNO = string.Empty;
this.INVNO = string.Empty;
this.CNTRTOTAL = string.Empty;
this.KaiChuanRi = string.Empty;
this.ACCDATE = string.Empty;
this.FACTRYTIME = string.Empty;
this.FeeList = new List<MsChFee>();
}
public string BSNO { get; set; }
public string MBLNO { get; set; }
public string INVNO { get; set; }
public string CNTRTOTAL { get; set; }
public string KaiChuanRi { get; set; }
public string ACCDATE { get; set; }
public string FACTRYTIME { get; set; }
public decimal AMOUNT_RMB { get; set; }
public decimal AMOUNT_USD { get; set; }
public List<MsChFee> FeeList { get; set; }
}
}