using Estsh.Core.Base; using System.ComponentModel; using System.ComponentModel.DataAnnotations.Schema; namespace Estsh.Core.Models { /// /// ,数据实体对象 /// [Table("g_allocate_task_listDetail")] [Serializable] public class GAllocateTaskListdetail : BaseEntity { [Column("ruid")] [DisplayName(" ")] public int Ruid { get; set; } [Column("order_no")] [DisplayName(" ")] public string OrderNo { get; set; } [Column("part_id")] [DisplayName(" ")] public int PartId { get; set; } [Column("total_qty")] [DisplayName(" ")] public int TotalQty { get; set; } [Column("totalBox_qty")] [DisplayName(" ")] public int TotalboxQty { get; set; } [Column("Alloc_qty")] [DisplayName(" ")] public int AllocQty { get; set; } [Column("AllocBox_qty")] [DisplayName(" ")] public int AllocboxQty { get; set; } [Column("Ship_qty")] [DisplayName(" ")] public int ShipQty { get; set; } [Column("ShipBox_qty")] [DisplayName(" ")] public int ShipboxQty { get; set; } [Column("Receive_qty")] [DisplayName(" ")] public int ReceiveQty { get; set; } [Column("ReceiveBox_qty")] [DisplayName(" ")] public int ReceiveboxQty { get; set; } [Column("default_box_qty")] [DisplayName(" ")] public int DefaultBoxQty { get; set; } [Column("Real_qty")] [DisplayName(" ")] public int RealQty { get; set; } [Column("type")] [DisplayName(" ")] public string Type { get; set; } } }