You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
687 B
32 lines
687 B
4 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Text;
|
||
|
|
||
|
namespace QMAPP.MD.Entity.View
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// BOM定位
|
||
|
/// </summary>
|
||
|
public class BomLocation
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Bom编号
|
||
|
/// </summary>
|
||
|
public string BOMCode { get; set; }
|
||
|
/// <summary>
|
||
|
/// Bom项序号
|
||
|
/// </summary>
|
||
|
public int ItemNo { get; set; }
|
||
|
/// <summary>
|
||
|
/// 组成物料数目
|
||
|
/// </summary>
|
||
|
public int SubCount { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 上级物料号
|
||
|
/// </summary>
|
||
|
public string UP_MATERIAL_CODE { get; set; }
|
||
|
}
|
||
|
}
|