using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_wo_picklist")] [Serializable] public class GWoPicklist : BaseEntity { [Column("workorder")] [DisplayName(" ")] public string Workorder { get; set; } [Column("pdline_id")] [DisplayName(" ")] public int PdlineId { get; set; } [Column("part_id")] [DisplayName(" ")] public int PartId { get; set; } [Column("locate_id")] [DisplayName(" ")] public int LocateId { get; set; } [Column("request_qty")] [DisplayName(" ")] public decimal RequestQty { get; set; } [Column("issue_qty")] [DisplayName(" ")] public decimal IssueQty { get; set; } [Column("inpdline_qty")] [DisplayName(" ")] public decimal InpdlineQty { get; set; } [Column("to_wo")] [DisplayName(" ")] public decimal ToWo { get; set; } [Column("scrap_qty")] [DisplayName(" ")] public decimal ScrapQty { get; set; } [Column("ab_issue_qty")] [DisplayName(" ")] public decimal AbIssueQty { get; set; } [Column("ab_return_qty")] [DisplayName(" ")] public decimal AbReturnQty { get; set; } [Column("version")] [DisplayName(" ")] public string Version { get; set; } [Column("status")] [DisplayName(" ")] public string Status { get; set; } [Column("type")] [DisplayName(" ")] public string Type { get; set; } [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } #region PDA扩展 [NotMapped] [Column("part_no")] [DisplayName(" ")] public string PartNo { get; set; } [NotMapped] [Column("part_spec")] [DisplayName(" ")] public string PartSpec { get; set; } [NotMapped] [Column("pdline_code")] [DisplayName(" ")] public string PdlineCode { get; set; } [NotMapped] [Column("pdline_desc")] [DisplayName(" ")] public string PdlineDesc { get; set; } [NotMapped] [Column("task_qty")] [DisplayName(" ")] public string TaskQty { get; set; } [NotMapped] [Column("locate_name")] [DisplayName(" ")] public string LocateName { get; set; } [NotMapped] [Column("locate_desc")] [DisplayName(" ")] public string LocateDesc { get; set; } [NotMapped] [Column("order_status")] [DisplayName(" ")] public string OrderStatus { get; set; } [NotMapped] [Column("emp_name")] [DisplayName(" ")] public string EmpName { get; set; } [NotMapped] [Column("lot_no")] [DisplayName(" ")] public string LotNo { get; set; } [NotMapped] [Column("stock_qty")] [DisplayName(" ")] public string StockQty { get; set; } #endregion } }