using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JiepeiWMS.Model.ViewModels { public class NCMaterialOutViewModels { public Ufinterface ufinterface { get; set; } public class Ufinterface { public string account { get; set; } public string billtype { get; set; } public string groupcode { get; set; } public string isexchange { get; set; } public string replace { get; set; } public string sender { get; set; } public Bill bill { get; set; } } public class Bill { public Billhead billhead { get; set; } } public class Billhead { public string pk_group { get; set; } public string corpoid { get; set; } public string corpvid { get; set; } public string pk_org { get; set; } public string pk_org_v { get; set; } public Cgeneralbid cgeneralbid { get; set; } public string cwarehouseid { get; set; } public string vtrantypecode { get; set; } public string cdrawcalbodyoid { get; set; } public string cdrawcalbodyvid { get; set; } public string fbillflag { get; set; } } public class Cgeneralbid { public List item { get; set; } } public class Item { public string cmaterialoid { get; set; } public string cmaterialvid { get; set; } public string cunitid { get; set; } public string castunitid { get; set; } public string vchangerate { get; set; } public string nshouldnum { get; set; } public string nshouldassistnum { get; set; } public string nnum { get; set; } public string nassistnum { get; set; } } } }