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.

37 lines
1.1 KiB
C#

2 years ago
using Estsh.Core.Base;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Model.ExcelModel
{
/// <summary>
///总成零件号/原材料零件号/配置零件号
/// </summary>
[Serializable]
public class PartMaster
{
[Column("part_no")]
[DisplayName("零件号")]
public string? PartNo { get; set; }
[Column("part_spec")]
[DisplayName("零件简码")]
public string? PartSpec { get; set; }
[Column("part_spec2")]
[DisplayName("零件描述")]
public string? PartSpec2 { get; set; }
[Column("unit")]
[DisplayName("单位")]
public string? Unit { get; set; }
[Column("default_box_qty")]
[DisplayName("最小包装数量")]
public string? DefaultBoxQty { get; set; }
[Column("part_group")]
[DisplayName("零件组描述")]
public string? PartGroup { get; set; }
[Column("part_abc")]
[DisplayName("分类ABCDE")]
public string? PartAbc { get; set; }
}
}