using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Model.ExcelModel { /// /// 质检结果查询数据 /// [Serializable] public class QualityResult { [Column("PROVE")] [DisplayName("凭证抬头文本")] public string? PROVE { get; set; } [Column("EVRTN")] [DisplayName("单据号")] public string? Evrtn { get; set; } [Column("BSTYP")] [DisplayName("凭证标识")] public string? Bstyp { get; set; } [Column("ETENR")] [DisplayName("项目编号")] public string? Etenr { get; set; } [Column("LGORT")] [DisplayName("库存地点")] public string? Lgort { get; set; } [Column("SYNFLG")] [DisplayName("同步状态")] public string? Synflg { get; set; } [Column("ERRMSG")] [DisplayName("返回消息")] public string? ErrMsg { get; set; } [Column("SYNTIM")] [DisplayName("同步时间")] public string? Syntim { get; set; } [Column("part_spec")] [DisplayName("零件简码")] public string? PartSpec { get; set; } [Column("MATNR")] [DisplayName("零件号")] public string? Matnr { get; set; } [Column("part_spec2")] [DisplayName("零件名称")] public string? PartSpec2 { get; set; } [Column("ZDEV")] [DisplayName("合格数量")] public decimal Zdev { get; set; } [Column("UNIT")] [DisplayName("计量单位")] public string? Unit { get; set; } [Column("LIFNR")] [DisplayName("供应商代码")] public string? Lifnr { get; set; } [Column("RECTIM")] [DisplayName("创建时间")] public string? Rectim { get; set; } [Column("ZPOST")] [DisplayName("收货日期")] public string? Zpost { get; set; } [Column("ZTIME")] [DisplayName("收货时间")] public string? Ztime { get; set; } [Column("WERKS")] [DisplayName("工厂代码")] public string? Werks { get; set; } } }