using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("mes_work_order_part")] [Serializable] public class MesWorkOrderPart : BaseEntity { [Column("ruid")] [DisplayName(" ")] public long Ruid { get; set; } [Column("order_no")] [DisplayName(" ")] public string OrderNo { get; set; } [Column("part_id")] [DisplayName(" ")] public long PartId { get; set; } [Column("part_no")] [DisplayName(" ")] public string PartNo { get; set; } [Column("part_spec")] [DisplayName(" ")] public string PartSpec { get; set; } [Column("qty")] [DisplayName(" ")] public decimal Qty { get; set; } [Column("unit")] [DisplayName(" ")] public string Unit { get; set; } [Column("pull_status")] [DisplayName(" ")] public int PullStatus { get; set; } [Column("parent_part_id")] [DisplayName(" ")] public long? ParentPartId { get; set; } [Column("parent_part_no")] [DisplayName(" ")] public string ParentPartNo { get; set; } [Column("parent_part_spec")] [DisplayName(" ")] public string ParentPartSpec { get; set; } [Column("remark")] [DisplayName(" ")] public string Remark { get; set; } [Column("order_seq")] [DisplayName(" ")] public int? OrderSeq { get; set; } [Column("car_no")] [DisplayName(" ")] public string CarNo { get; set; } [Column("move_group_no")] [DisplayName(" ")] public string MoveGroupNo { get; set; } #region 扩展字段 [Column("pdline_code")] [DisplayName(" ")] public string PdlineCode { get; set; } #endregion } }