using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_ht_workorder")] [Serializable] public class GHtWorkorder : 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; } } }