using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Runtime.Serialization; using System.Xml.Serialization; using Volo.Abp.Application.Dtos; namespace WmsWebApi.Boms { public class BomDto : EntityDto { /// /// 父件物料 /// [Display(Name = "父件物料")] public string MATNR { get; set; } /// /// 物料描述 /// [Display(Name = "物料描述")] public string MAKTX { get; set; } /// /// 工厂 /// [Display(Name = "工厂")] public string WERKS { get; set; } /// /// BOM用途 /// [Display(Name = "BOM用途")] public string STLAN { get; set; } /// /// 可选BOM /// [Display(Name = "可选BOM")] public string STLAL { get; set; } /// /// 有效起始日期 /// [Display(Name = "有效起始日期")] public string DATUV { get; set; } /// /// 基本数量 /// [Display(Name = "基本数量")] public decimal? BMENG { get; set; } /// /// BOM状态 /// [Display(Name = "BOM状态")] public string STLST { get; set; } /// /// BOM删除标志 /// [Display(Name = "BOM删除标志")] public string LOEKZ { get; set; } public virtual List items { get; set; } } }