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.
123 lines
4.2 KiB
C#
123 lines
4.2 KiB
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace DSWeb.Areas.MvcShipping.Models.MsOpSeaeBaoXian
|
|
{
|
|
[JsonObject]
|
|
public class OpSeaeBaoXianModel_Login
|
|
{
|
|
public string code { get; set; }
|
|
public string isSuc { get; set; }
|
|
public string resultType { get; set; }
|
|
public string message { get; set; }
|
|
public result result { get; set; }
|
|
|
|
}
|
|
|
|
[JsonObject]
|
|
public class result
|
|
{
|
|
public User user { get; set; }
|
|
public string token { get; set; }
|
|
public string refreshToken { get; set; }
|
|
}
|
|
[JsonObject]
|
|
public class User
|
|
{
|
|
public string userName { get; set; }
|
|
public string password { get; set; }
|
|
public string userId { get; set; }
|
|
public string roleId { get; set; }
|
|
public string sysFlag { get; set; }
|
|
public string clientId { get; set; }
|
|
}
|
|
|
|
public class OpSeaeBaoXianModel_Query_Requst
|
|
{
|
|
public string serverkey { get; set; }
|
|
public string clientid { get; set; }
|
|
public string querytype { get; set; }
|
|
public string companyname { get; set; }
|
|
public string invoiceissuing { get; set; }
|
|
public string username { get; set; }
|
|
public string orgcode { get; set; }
|
|
public string address { get; set; }
|
|
public string tel { get; set; }
|
|
public string mail { get; set; }
|
|
public string cusqq { get; set; }
|
|
public string fixedtelephone { get; set; }
|
|
}
|
|
|
|
public class OpSeaeBaoXianModel_Query_Response
|
|
{
|
|
public string success { get; set; }
|
|
public string code { get; set; }
|
|
public string querytype { get; set; }
|
|
public string message { get; set; }
|
|
public OpSeaeBaoXianModel_Query_Response_Result result { get; set; }
|
|
}
|
|
|
|
public class OpSeaeBaoXianModel_Query_Response_Result
|
|
{
|
|
public string url { get; set; }
|
|
}
|
|
|
|
public class OpSeaeBaoXianModel_Apply_Requst
|
|
{
|
|
public string serverkey { get; set; }
|
|
public string clientid { get; set; }
|
|
public string companyname { get; set; }
|
|
public string productcode { get; set; }
|
|
public string partnerorderid { get; set; }
|
|
public string partnerapplyid { get; set; }
|
|
public string invoiceissuing { get; set; }
|
|
public string username { get; set; }
|
|
public string orgcode { get; set; }
|
|
public string address { get; set; }
|
|
public string tel { get; set; }
|
|
public string mail { get; set; }
|
|
public string cusqq { get; set; }
|
|
public string fixedtelephone { get; set; }
|
|
public string policyholdername { get; set; }
|
|
public string holderphone { get; set; }
|
|
public string holdercontact { get; set; }
|
|
public string holderaddresse { get; set; }
|
|
public string insuredname { get; set; }
|
|
public string insuredaddress { get; set; }
|
|
public string insuredcontact { get; set; }
|
|
public string insuredphone { get; set; }
|
|
public string goodscategorycode { get; set; }
|
|
public string packagetypecode { get; set; }
|
|
public string goodsmt { get; set; }
|
|
public string goodsmarks { get; set; }
|
|
public string goodsmarksdesc { get; set; }
|
|
public string invoiceno { get; set; }
|
|
public string billno { get; set; }
|
|
public string converyance { get; set; }
|
|
public string transporttypecode { get; set; }
|
|
public string portloading { get; set; }
|
|
public string destination { get; set; }
|
|
public string porttranshipment { get; set; }
|
|
public string departurestartdate { get; set; }
|
|
public string abbreviation { get; set; }
|
|
public string isasprebill { get; set; }
|
|
public string worknumber { get; set; }
|
|
}
|
|
|
|
public class OpSeaeBaoXianModel_Apply_Response
|
|
{
|
|
public string success { get; set; }
|
|
public string code { get; set; }
|
|
public string querytype { get; set; }
|
|
public string message { get; set; }
|
|
public OpSeaeBaoXianModel_Apply_Response_Result result { get; set; }
|
|
}
|
|
|
|
public class OpSeaeBaoXianModel_Apply_Response_Result
|
|
{
|
|
public string url { get; set; }
|
|
}
|
|
} |