using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace JiepeiWMS.Model.ViewModels
|
{
|
public class NCInvoiceViewModels
|
{
|
public Ufinterface ufinterface { get; set; }
|
|
public class Ufinterface
|
{
|
public string account { get; set; }
|
public string billtype { get; set; }
|
public string isexchange { get; set; }
|
public string replace { get; set; }
|
public string sender { get; set; }
|
public string groupcode { get; set; }
|
public Bill bill { get; set; }
|
}
|
|
public class Bill
|
{
|
public int id { get; set; }
|
public Billhead billhead { get; set; }
|
}
|
|
public class Billhead
|
{
|
public string pk_group { get; set; }
|
public string pk_org { get; set; }
|
public string dbilldate { get; set; }
|
public string darrivedate { get; set; }
|
public string vtrantypecode { get; set; }
|
public string ctrantypeid { get; set; }
|
public string pk_busitype { get; set; }
|
public string pk_stockorg { get; set; }
|
public string pk_stockorg_v { get; set; }
|
public string pk_supplier { get; set; }
|
public string corigcurrencyid { get; set; }
|
public string nexchangerate { get; set; }
|
public string ccurrencyid { get; set; }
|
public string csendcountryid { get; set; }
|
public string crececountryid { get; set; }
|
public string ctaxcountryid { get; set; }
|
public Invoicebody invoicebody { get; set; }
|
}
|
|
public class Invoicebody
|
{
|
public List<Item> item { get; set; }
|
}
|
|
public class Item
|
{
|
public string pk_group { get; set; }
|
public string pk_org { get; set; }
|
public string nprice { get; set; }
|
public string nmny { get; set; }
|
public string ntax { get; set; }
|
public string ntaxmny { get; set; }
|
public string ntaxprice { get; set; }
|
public string castunitid { get; set; }
|
public string ctaxcodeid { get; set; }
|
}
|
}
|
}
|