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
3.1 KiB
C#
108 lines
3.1 KiB
C#
using System;
|
|
using System.Data;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using HcUtility.Core;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace DSWeb.MvcShipping.DAL.YARDCTNXML
|
|
{
|
|
|
|
[XmlRootAttribute("BLINFO")]
|
|
public class JIEFENG
|
|
{
|
|
[XmlElement(ElementName = "ds")]
|
|
public ds[] ds;
|
|
}
|
|
|
|
public class ds
|
|
{
|
|
[XmlElement(ElementName = "CNTRNO")]
|
|
public string CNTRNO = "";
|
|
[XmlElement(ElementName = "CNTRSIZE")]
|
|
public string CNTRSIZE = "";
|
|
[XmlElement(ElementName = "ISALLOWINPORT")]
|
|
public string ISALLOWINPORT = "";
|
|
[XmlElement(ElementName = "CO_PKGCODE")]
|
|
public string CO_PKGCODE = "";
|
|
[XmlElement(ElementName = "CNTRTYPE")]
|
|
public string CNTRTYPE = "";
|
|
[XmlElement(ElementName = "CARGOQTY")]
|
|
public string CARGOQTY = "";
|
|
[XmlElement(ElementName = "CARGOWEIGHT")]
|
|
public string CARGOWEIGHT = "";
|
|
[XmlElement(ElementName = "CARGOVOLUME")]
|
|
public string CARGOVOLUME = "";
|
|
[XmlElement(ElementName = "SEALNO")]
|
|
public string SEALNO = "";
|
|
[XmlElement(ElementName = "BLNO")]
|
|
public string BLNO = "";
|
|
[XmlElement(ElementName = "E_BLID")]
|
|
public string E_BLID = "";
|
|
|
|
}
|
|
|
|
|
|
[XmlRootAttribute("NewDataSet")]
|
|
public class DAYA
|
|
{
|
|
[XmlElement(ElementName = "Table")]
|
|
public dayatable[] ds;
|
|
}
|
|
|
|
public class dayatable
|
|
{
|
|
[XmlElement(ElementName = "CTNNO")]
|
|
public string CTNNO = "";
|
|
[XmlElement(ElementName = "CTNSZ")]
|
|
public string CTNSZ = "";
|
|
[XmlElement(ElementName = "CTNTP")]
|
|
public string CTNTP = "";
|
|
[XmlElement(ElementName = "ECTNWT")]
|
|
public string ECTNWT = "";
|
|
[XmlElement(ElementName = "PKGS")]
|
|
public string PKGS = "";
|
|
[XmlElement(ElementName = "ALKWGT")]
|
|
public string ALKWGT = "";
|
|
[XmlElement(ElementName = "ALCUBAGE")]
|
|
public string ALCUBAGE = "";
|
|
[XmlElement(ElementName = "SEALNO")]
|
|
public string SEALNO = "";
|
|
[XmlElement(ElementName = "LDBKDT")]
|
|
public string LDBKDT = "";
|
|
|
|
}
|
|
|
|
[XmlRootAttribute("NewDataSet")]
|
|
public class ZHONGCHUANG
|
|
{
|
|
[XmlElement(ElementName = "Table")]
|
|
public zhongchuangtable[] ds;
|
|
}
|
|
|
|
public class zhongchuangtable
|
|
{
|
|
[XmlElement(ElementName = "箱号")]
|
|
public string CNTRNO = "";
|
|
[XmlElement(ElementName = "尺寸")]
|
|
public string CTNSIZE = "";
|
|
[XmlElement(ElementName = "箱型")]
|
|
public string CTNTYPE = "";
|
|
[XmlElement(ElementName = "总件数")]
|
|
public string PKGS = "";
|
|
[XmlElement(ElementName = "重量")]
|
|
public string KGS = "";
|
|
[XmlElement(ElementName = "皮重")]
|
|
public string TAREWEIGHT = "";
|
|
[XmlElement(ElementName = "总尺码")]
|
|
public string CBM = "";
|
|
[XmlElement(ElementName = "铅封号")]
|
|
public string SEALNO = "";
|
|
[XmlElement(ElementName = "提单号")]
|
|
public string BLNO = "";
|
|
|
|
}
|
|
|
|
|
|
}
|