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.

56 lines
1.8 KiB
C#

11 months ago
using DSWeb.MvcShipping.Models.MsOpSeae;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace DSWeb.Areas.Dispatch.Models
{
public class RespGetOpSeae : RespCommon
{
public List<OpSeaeModel> Data { get; set; }
public int Total { get; set; }
}
public class OpSeaeModel
{
public OpSeaeModel()
{
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;
}
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 decimal AMOUNT_RMB { get; set; }
public decimal AMOUNT_USD { get; set; }
}
}