using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace JiepeiWMS.Model.ViewModels
|
{
|
public class NCMaterialViewModels
|
{
|
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 code { get; set; }
|
public string name { get; set; }
|
public string materialspec { get; set; }
|
public string materialtype { get; set; }
|
public string pk_measdoc { get; set; }
|
public string pk_marbasclass { get; set; }
|
public string pk_prodline { get; set; }
|
public string intolerance { get; set; }
|
public string outtolerance { get; set; }
|
public string outcloselowerlimit { get; set; }
|
public string productfamily { get; set; }
|
public string pk_mattaxes { get; set; }
|
public string enablestate { get; set; }
|
public Materialconvert materialconvert { get; set; }
|
}
|
|
public class Materialconvert
|
{
|
public Item item { get; set; }
|
}
|
|
public class Item
|
{
|
public string pk_measdoc { get; set; }
|
public string measrate { get; set; }
|
}
|
}
|
}
|