using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ICSSoft.Frame.Data.Entity.NcApiEntity { /// /// 创建pr单传入实体 /// public class CreatePRIntity { //日期格式2021-09-03 12:00:00 /// /// 集团 /// public string pk_group { get; set; } /// /// 组织 /// public string pk_org { get; set; } /// /// 建单人 /// public string billmaker { get; set; } /// /// 币种 /// public string ccurrencyid { get; set; } /// /// 建单日期 /// public string dbilldate { get; set; } /// /// 其他日期 /// public string time { get; set; } /// /// 请购类型 /// public string ctrantypeid { get; set; } public string vbmemo { get; set; } /// /// 子表 /// public List list { get; set; } } public class CreatePRIntityLine { /// /// 集团 /// public string pk_group { get; set; } /// /// 组织 /// public string pk_org { get; set; } /// /// 行 /// public string crowno { get; set; } /// /// 采购组织 /// public string pk_purchaseorg { get; set; } /// /// 物料编码 /// public string pk_srcmaterial { get; set; } /// /// 物料版本 /// public string pk_material { get; set; } /// /// 数量 /// public string nastnum { get; set; } /// /// 单位 /// public string castunitid { get; set; } /// /// 转换率 /// public string vchangerate { get; set; } /// /// 需求日期 /// public string dreqdate { get; set; } /// /// 建议日期 /// public string dsuggestdate { get; set; } // public string vsourcecode { get; set; } // public string vsourcerowno { get; set; } ////币种 //public string ccurrencyid { get; set; } public string vbmemo { get; set; } } public class CreatePRDetailEntity { public string MOCODE { get; set; } public string LOTNO { get; set; } public string ItemCode { get; set; } public string INVNAME { get; set; } public string INVTYPE { get; set; } public string INVUOM { get; set; } public string OPCODE { get; set; } public string OPDESC { get; set; } public decimal PRQty { get; set; } public DateTime StartPlanDate { get; set; } public DateTime EndPlanDate { get; set; } public DateTime dreqdate { get; set; } } }