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.
31 lines
732 B
C#
31 lines
732 B
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Model.ExcelModel
|
|
{
|
|
/// <summary>
|
|
/// 成品库存查询
|
|
/// </summary>
|
|
[Serializable]
|
|
public class FinishedInventory
|
|
{
|
|
[Column("mtoc")]
|
|
[DisplayName("成套配置")]
|
|
public string? Mtoc { get; set; }
|
|
|
|
[Column("mtoc_desc")]
|
|
[DisplayName("成套配置描述")]
|
|
public string? MtocDesc { get; set; }
|
|
|
|
[Column("rejectsY")]
|
|
[DisplayName("良品数量")]
|
|
public int? RejectsY { get; set; }
|
|
|
|
[Column("rejectsN")]
|
|
[DisplayName("不良品数量")]
|
|
public int? RejectsN { get; set; }
|
|
|
|
}
|
|
}
|