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.
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using AutoMapper;
|
|
|
|
|
using HcUtility.Core;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
namespace DSWeb.MvcShipping.Models.MsChFee
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[JsonObject]
|
|
|
|
|
public class MsInvFee
|
|
|
|
|
{
|
|
|
|
|
public string billno { get; set; }
|
|
|
|
|
public string invoice_no { get; set; }
|
|
|
|
|
|
|
|
|
|
public string invoice_date { get; set; }
|
|
|
|
|
public List<MsInvFeeDetail> fee { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[JsonObject]
|
|
|
|
|
public class MsInvFeeDetail
|
|
|
|
|
{
|
|
|
|
|
public string fee_type { get; set; }
|
|
|
|
|
public string count { get; set; }
|
|
|
|
|
|
|
|
|
|
public string fee_rate { get; set; }
|
|
|
|
|
public string fee_rate_c { get; set; }
|
|
|
|
|
public string amount { get; set; }
|
|
|
|
|
public string amount_c { get; set; }
|
|
|
|
|
public string exchange_rate { get; set; }
|
|
|
|
|
public string vat_fee { get; set; }
|
|
|
|
|
public string vat_amount { get; set; }
|
|
|
|
|
public string vat_amount_c { get; set; }
|
|
|
|
|
public string vat_sum { get; set; }
|
|
|
|
|
public string vat_sum_c { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class JsonMsInvFee
|
|
|
|
|
{
|
|
|
|
|
public System.Collections.Generic.List<MsInvFee> message { get; set; }
|
|
|
|
|
public string status { get; set; }
|
|
|
|
|
}
|
|
|
|
|
//
|
|
|
|
|
}
|