using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_ht_sn_status")] [Serializable] public class GHtSnStatus : BaseEntity { [Column("ruid")] [DisplayName(" ")] public int? Ruid { get; set; } [Column("seq")] [DisplayName(" ")] public int? Seq { get; set; } [Column("workorder")] [DisplayName(" ")] public string Workorder { get; set; } [Column("wo_detail_id")] [DisplayName(" ")] public int? WoDetailId { get; set; } [Column("serial_number")] [DisplayName(" ")] public string SerialNumber { get; set; } [Column("csn")] [DisplayName(" ")] public string Csn { get; set; } [Column("part_id")] [DisplayName(" ")] public int? PartId { get; set; } [Column("model_id")] [DisplayName(" ")] public int? ModelId { 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("terminal_id")] [DisplayName(" ")] public int? TerminalId { get; set; } [Column("next_process")] [DisplayName(" ")] public int? NextProcess { get; set; } [Column("wip_process")] [DisplayName(" ")] public int? WipProcess { get; set; } [Column("current_status")] [DisplayName(" ")] public int? CurrentStatus { get; set; } [Column("work_flag")] [DisplayName(" ")] public int? WorkFlag { get; set; } [Column("in_process_time")] [DisplayName(" ")] public DateTime? InProcessTime { get; set; } [Column("qc_no")] [DisplayName(" ")] public string QcNo { get; set; } [Column("qc_result")] [DisplayName(" ")] public string QcResult { get; set; } [Column("rework_no")] [DisplayName(" ")] public string ReworkNo { get; set; } [Column("out_process_time")] [DisplayName(" ")] public DateTime? OutProcessTime { get; set; } [Column("route_id")] [DisplayName(" ")] public int? RouteId { get; set; } [Column("in_pdline_time")] [DisplayName(" ")] public DateTime? InPdlineTime { get; set; } [Column("out_pdline_time")] [DisplayName(" ")] public DateTime? OutPdlineTime { get; set; } [Column("shipping_time")] [DisplayName(" ")] public DateTime? ShippingTime { get; set; } [Column("car_no")] [DisplayName(" ")] public string CarNo { get; set; } [Column("slot_no")] [DisplayName(" ")] public int SlotNo { get; set; } [Column("prod_type")] [DisplayName(" ")] public string ProdType { get; set; } [Column("remark")] [DisplayName(" ")] public string Remark { get; set; } } }