using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("wms_move_header")] [Serializable] public class WmsMoveHeader : BaseEntity { [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } [Column("order_no")] [DisplayName(" ")] public string OrderNo { get; set; } [Column("order_type")] [DisplayName(" ")] public int OrderType { get; set; } [Column("order_status")] [DisplayName(" ")] public int OrderStatus { get; set; } [Column("ref_order_no")] [DisplayName(" ")] public string RefOrderNo { get; set; } [Column("batching_status")] [DisplayName(" ")] public int? BatchingStatus { get; set; } [Column("remarks")] [DisplayName(" ")] public string Remarks { get; set; } [Column("wrong_sign")] [DisplayName(" ")] public string WrongSign { get; set; } #region 扩展字段 [NotMapped] [Column("order_type_desc")] [DisplayName(" ")] public string OrderTypeDesc { get; set; } [NotMapped] [Column("src_zone_id")] [DisplayName(" ")] public string SrcZoneId { get; set; } [NotMapped] [Column("src_zone_name")] [DisplayName(" ")] public string SrcZoneName { get; set; } [NotMapped] [Column("dest_zone_name")] [DisplayName(" ")] public string DestZoneName { get; set; } [NotMapped] [Column("emp_no")] [DisplayName(" ")] public string EmpNo { get; set; } [NotMapped] [Column("factory_code")] [DisplayName(" ")] public string FactoryCode { get; set; } [NotMapped] [Column("qty")] [DisplayName(" ")] public string Qty { get; set; } [NotMapped] [Column("pick_qty")] [DisplayName(" ")] public string PickQty { get; set; } [NotMapped] [Column("out_qty")] [DisplayName(" ")] public string OutQty { get; set; } [NotMapped] [Column("part_no")] [DisplayName(" ")] public string PartNo { get; set; } [Column("Part_Spec2")] [DisplayName(" ")] public string PartSpec2 { get; set; } [NotMapped] [Column("part_spec")] [DisplayName(" ")] public string PartSpec { get; set; } [NotMapped] [Column("order_status_desc")] [DisplayName(" ")] public string OrderStatusDesc { get; set; } [NotMapped] [Column("zone_desc")] [DisplayName(" ")] public string zoneDesc { get; set; } [Column("prepare_material")] [DisplayName(" ")] public int? prepareMaterial { get; set; } [Column("FedbatchType")] [DisplayName(" ")] public int? fedbatchType { get; set; } [NotMapped] [Column("FedbatchType_desc")] [DisplayName(" ")] public string fedbatchTypeDesc { get; set; } #endregion } }