You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

59 lines
1.5 KiB
C#

using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Model.ExcelModel
{
/// <summary>
///生产指令调整
/// </summary>
[Serializable]
public class BOMDefine
{
[Column("part_no_f")]
[DisplayName("父阶零件号")]
public string PartNoF { get; set; }
[Column("part_no_z")]
[DisplayName("子阶零件号")]
public string PartNoZ { get; set; }
[Column("bom_type")]
[DisplayName("BOM类型")]
public string BomType { get; set; }
[Column("item_group")]
[DisplayName("分组")]
public string ItemGroup { get; set; }
[Column("location")]
[DisplayName("位置")]
public string location { get; set; }
[Column("version")]
[DisplayName("版本")]
public string version { get; set; }
[Column("process_name")]
[DisplayName("工站")]
public string ProcessName { get; set; }
[Column("step_type")]
[DisplayName("工步序号")]
public string StepType { get; set; }
[Column("virtual_order")]
[DisplayName("虚阶")]
public string VirtualOrder { get; set; }
[Column("part_spec_f")]
[DisplayName("父阶零件号描述")]
public string PartSpecF { get; set; }
[Column("part_spec_z")]
[DisplayName("子阶零件号描述")]
public string PartSpecZ { get; set; }
}
}