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.

32 lines
833 B
C#

using System.ComponentModel;
using System.ComponentModel.DataAnnotations.Schema;
namespace Estsh.Core.Model.ExcelModel
{
/// <summary>
/// 半成品库存查询
/// </summary>
[Serializable]
public class FinishedHalfInventory
{
[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("rejectsY")]
[DisplayName("良品数量")]
public string? RejectsY { get; set; }
[Column("rejectsN")]
[DisplayName("不良品数量")]
public string? RejectsN { get; set; }
}
}