|
|
|
|
using System;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace APIForCustomer.BE
|
|
|
|
|
{
|
|
|
|
|
public class RequestEntity
|
|
|
|
|
{
|
|
|
|
|
public string j_company { get; set; }
|
|
|
|
|
public string j_contact { get; set; }
|
|
|
|
|
public string j_tel { get; set; }
|
|
|
|
|
public string j_mobile { get; set; }
|
|
|
|
|
public string j_country { get; set; }
|
|
|
|
|
public string j_province { get; set; }
|
|
|
|
|
public string j_city { get; set; }
|
|
|
|
|
public string j_post_code { get; set; }
|
|
|
|
|
public string j_address { get; set; }
|
|
|
|
|
public string d_company { get; set; }
|
|
|
|
|
public string d_contact { get; set; }
|
|
|
|
|
public string d_tel { get; set; }
|
|
|
|
|
public string d_mobile { get; set; }
|
|
|
|
|
public string d_country { get; set; }
|
|
|
|
|
public string d_province { get; set; }
|
|
|
|
|
public string d_city { get; set; }
|
|
|
|
|
public string d_post_code { get; set; }
|
|
|
|
|
public string d_address { get; set; }
|
|
|
|
|
public string orderid { get; set; }
|
|
|
|
|
public string express_type { get; set; }
|
|
|
|
|
public string parcel_quantity { get; set; }
|
|
|
|
|
public string cargo_total_weight { get; set; }
|
|
|
|
|
public string returnsign { get; set; }
|
|
|
|
|
|
|
|
|
|
private List<DeclareInvoice> declareInvoiceList = new List<DeclareInvoice>();
|
|
|
|
|
public List<DeclareInvoice> DeclareInvoiceList
|
|
|
|
|
{
|
|
|
|
|
get { return declareInvoiceList; }
|
|
|
|
|
set { declareInvoiceList = value; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class DeclareInvoice
|
|
|
|
|
{
|
|
|
|
|
public string name { get; set; }
|
|
|
|
|
public string ename { get; set; }
|
|
|
|
|
public string hscode { get; set; }
|
|
|
|
|
public string count { get; set; }
|
|
|
|
|
public string unit { get; set; }
|
|
|
|
|
public string weight { get; set; }
|
|
|
|
|
public string amount { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|