using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_workorder")] [Serializable] public class GWorkorder : BaseEntity { [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } [Column("seq")] [DisplayName(" ")] public int? Seq { get; set; } [Column("part_id")] [DisplayName(" ")] public int? PartId { get; set; } [Column("type")] [DisplayName(" ")] public string Type { get; set; } [Column("status")] [DisplayName(" ")] public decimal? Status { get; set; } [Column("car_no")] [DisplayName(" ")] public string CarNo { get; set; } [Column("knr")] [DisplayName(" ")] public string Knr { get; set; } [Column("vin")] [DisplayName(" ")] public string Vin { get; set; } [Column("pdline_id")] [DisplayName(" ")] public int? PdlineId { get; set; } [Column("in_pdline_ymd")] [DisplayName(" ")] public string InPdlineYmd { get; set; } [Column("in_pdline_hms")] [DisplayName(" ")] public string InPdlineHms { get; set; } [Column("out_pdline_ymd")] [DisplayName(" ")] public string OutPdlineYmd { get; set; } [Column("out_pdline_hms")] [DisplayName(" ")] public string OutPdlineHms { get; set; } [Column("shipping_ymd")] [DisplayName(" ")] public string ShippingYmd { get; set; } [Column("shipping_hms")] [DisplayName(" ")] public string ShippingHms { get; set; } [Column("ship_print_ymd")] [DisplayName(" ")] public string ShipPrintYmd { get; set; } [Column("ship_print_hms")] [DisplayName(" ")] public string ShipPrintHms { get; set; } [Column("order_no")] [DisplayName(" ")] public string OrderNo { get; set; } [Column("slot_no")] [DisplayName(" ")] public int? SlotNo { get; set; } #region [NotMapped] [Column("pdline_name")] [DisplayName(" ")] public string PdlineName { get; set; } [NotMapped] [Column("type_name")] [DisplayName(" ")] public string TypeName { get; set; } [NotMapped] [Column("model_name")] [DisplayName(" ")] public string modelName { get; set; } [NotMapped] [Column("model_desc")] [DisplayName(" ")] public string ModelDesc { get; set; } [NotMapped] [Column("part_no")] [DisplayName(" ")] public string PartNo { get; set; } [NotMapped] [Column("part_spec")] [DisplayName(" ")] public string PartSpec { get; set; } [NotMapped] [Column("part_spec2")] [DisplayName(" ")] public string PartSpec2 { get; set; } [NotMapped] [Column("work_flag")] [DisplayName(" ")] public string WorkFlag { get; set; } [NotMapped] [Column("out_pdline_time")] [DisplayName(" ")] public string OutPdlineTime { get; set; } [NotMapped] [Column("create_time")] [DisplayName(" ")] public string CreateTime { get; set; } [NotMapped] [Column("shipping_time")] [DisplayName(" ")] public string ShippingTime { get; set; } [NotMapped] [Column("serial_number")] [DisplayName(" ")] public int SerialNumber { get; set; } [NotMapped] [Column("qty")] [DisplayName(" ")] public int Qty { get; set; } [NotMapped] [Column("order_seq")] [DisplayName(" ")] public string OrderSeq { get; set; } [NotMapped] [Column("date")] [DisplayName(" ")] public string Date { get; set; } [NotMapped] [Column("date1")] [DisplayName(" ")] public string date1 { get; set; } [NotMapped] [Column("date2")] [DisplayName(" ")] public string date2 { get; set; } [NotMapped] [Column("print_number")] [DisplayName(" ")] public int PrintNumber { get; set; } [NotMapped] [Column("number")] [DisplayName(" ")] public int Number { get; set; } [NotMapped] [Column("type_id")] [DisplayName(" ")] public int TypeId { get; set; } [NotMapped] [Column("model_id")] [DisplayName(" ")] public int ModelId { get; set; } [NotMapped] [Column("sub_part_id")] [DisplayName(" ")] public int SubPartId { get; set; } [NotMapped] [Column("shift_code")] [DisplayName(" ")] public string ShiftCode { get; set; } [NotMapped] [Column("print_time")] [DisplayName(" ")] public string PrintTime { get; set; } [NotMapped] [Column("enum_desc")] [DisplayName(" ")] public string EnumDesc { get; set; } #endregion } }