using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace QMAPP.MD.Entity.View { /// /// BOM定位 /// public class BomLocation { /// /// Bom编号 /// public string BOMCode { get; set; } /// /// Bom项序号 /// public int ItemNo { get; set; } /// /// 组成物料数目 /// public int SubCount { get; set; } /// /// 上级物料号 /// public string UP_MATERIAL_CODE { get; set; } } }