You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.7 KiB
C#
73 lines
1.7 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[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; }
|
|
|
|
|
|
}
|
|
}
|