using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_sn_count")] [Serializable] public class GSnCount : BaseEntity { [Column("workorder_no")] [DisplayName(" ")] public int? WorkorderNo { get; set; } [Column("model_id")] [DisplayName(" ")] public int? ModelId { get; set; } [Column("part_id")] [DisplayName(" ")] public int PartId { get; set; } [Column("pdline_id")] [DisplayName(" ")] public int PdlineId { get; set; } [Column("stage_id")] [DisplayName(" ")] public int StageId { get; set; } [Column("process_id")] [DisplayName(" ")] public int ProcessId { get; set; } [Column("shift_id")] [DisplayName(" ")] public int? ShiftId { get; set; } [Column("work_date")] [DisplayName(" ")] public string WorkDate { get; set; } [Column("work_hour")] [DisplayName(" ")] public int? WorkHour { get; set; } [Column("pass_qty")] [DisplayName(" ")] public decimal? PassQty { get; set; } [Column("fail_qty")] [DisplayName(" ")] public decimal? FailQty { get; set; } [Column("repass_qty")] [DisplayName(" ")] public decimal? RepassQty { get; set; } [Column("refail_qty")] [DisplayName(" ")] public decimal? RefailQty { get; set; } [Column("output_qty")] [DisplayName(" ")] public decimal? OutputQty { get; set; } [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } } }