using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_ship_order")] [Serializable] public class GShipOrder : BaseEntity { [Column("order_no")] [DisplayName(" ")] public string OrderNo { get; set; } [Column("order_ymd")] [DisplayName(" ")] public string OrderYmd { get; set; } [Column("start_ymd")] [DisplayName(" ")] public string StartYmd { get; set; } [Column("end_ymd")] [DisplayName(" ")] public string EndYmd { get; set; } [Column("print_type")] [DisplayName(" ")] public string PrintType { get; set; } [Column("model_type_id")] [DisplayName(" ")] public int? ModelTypeId { get; set; } [Column("start_car_no")] [DisplayName(" ")] public string StartCarNo { get; set; } [Column("end_car_no")] [DisplayName(" ")] public string EndCarNo { get; set; } [Column("bs_car_no")] [DisplayName(" ")] public string BsCarNo { get; set; } [Column("be_car_no")] [DisplayName(" ")] public string BeCarNo { get; set; } [Column("shift_id")] [DisplayName(" ")] public int? ShiftId { get; set; } [Column("pack_type")] [DisplayName(" ")] public string PackType { get; set; } [Column("ship_emp")] [DisplayName(" ")] public string ShipEmp { get; set; } [Column("ship_address")] [DisplayName(" ")] public string ShipAddress { get; set; } [Column("memo")] [DisplayName(" ")] public string Memo { get; set; } [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } #region 扩展字段 [NotMapped] [Column("Number")] [DisplayName(" ")] public int Number { get; set; } [NotMapped] [Column("cust_order")] [DisplayName(" ")] public string CustOrder { get; set; } [NotMapped] [Column("part_id")] [DisplayName(" ")] public int? PartId { get; set; } [NotMapped] [Column("part_no")] [DisplayName(" ")] public string PartNo { get; set; } [NotMapped] [Column("part_spec")] [DisplayName(" ")] public string PartSpec { get; set; } [NotMapped] [Column("qty")] [DisplayName(" ")] public int Qty { get; set; } [NotMapped] [Column("ship_unit")] [DisplayName(" ")] public string ShipUnit { get; set; } [NotMapped] [Column("xinhao")] [DisplayName(" ")] public string Xinhao { get; set; } [NotMapped] [Column("model_id")] [DisplayName(" ")] public int ModelId { get; set; } [NotMapped] [Column("model_desc")] [DisplayName(" ")] public string ModelDesc { get; set; } [NotMapped] [Column("page")] [DisplayName(" ")] public string page { get; set; } [NotMapped] [Column("shift_name")] [DisplayName(" ")] public string ShiftName { get; set; } #endregion } }