namespace iWareSql.MyDbContext
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class ware_sorting
|
{
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
public long Id { get; set; }
|
|
#region ÊýÁ¿
|
|
/// <summary>
|
/// ÐèÇóÊýÁ¿
|
/// </summary>
|
public decimal Quantity { get; set; }
|
|
//×¢Ò⣺¡¾ÒÑÏ·¢Êý¡¿±í ware_orders_details¶ÁÈ¡ HasIssueQuantityµÄÖµ ÀíÂÛÉÏÓ¦¸ÃÒª¸úÕâ¸öDeliveryQuantityÖµÒ»Ö£¬²»Ò»Ö¾ͱíʾÓÐBug
|
/// <summary>
|
/// ÒÑÏ·¢Êý
|
/// </summary>
|
public decimal DeliveryQuantity { get; set; }
|
|
//×¢Ò⣺¡¾ÒÑÈ¡»õÊýÁ¿¡¿ ´Ó±í ware_orders_details¶ÁÈ¡ HasPickQuantityµÄÖµ ÀíÂÛÉÏÓ¦¸ÃÒª¸úÕâ¸öHasPickQuantityÖµÒ»Ö£¬²»Ò»Ö¾ͱíʾÓÐBug
|
/// <summary>
|
/// ÒÑÈ¡»õÊýÁ¿ ¡¾Editby shaocx,2023-08-10¡¿
|
/// </summary>
|
public decimal HasPickQuantity { get; set; }
|
|
/// <summary>
|
/// ÒÑ·Ö¼ðÊý ´Ó±í ware_orders_details¶ÁÈ¡ HasSortQuantityµÄÖµ ÀíÂÛÉÏÓ¦¸ÃÒª¸úÕâ¸öCompleteQuantityÖµÒ»Ö£¬²»Ò»Ö¾ͱíʾÓÐBug
|
/// </summary>
|
public decimal CompleteQuantity { get; set; }
|
|
|
/// <summary>
|
/// ÒÑ·¢»õÊýÁ¿ ¡¾Editby shaocx,2023-06-18¡¿
|
/// </summary>
|
public decimal HasDeliverQuantity { get; set; }
|
|
|
#endregion
|
|
[StringLength(50)]
|
public string PurchaseNo { get; set; }
|
|
[StringLength(50)]
|
public string DeliveryNo { get; set; }
|
|
[StringLength(50)]
|
public string CollectNo { get; set; }
|
|
[StringLength(50)]
|
public string SalesNo { get; set; }
|
|
[StringLength(50)]
|
public string EnterWarehouseNo { get; set; }
|
|
[StringLength(50)]
|
public string WorkOrderNo { get; set; }
|
|
[StringLength(50)]
|
public string TransferNo { get; set; }
|
|
[StringLength(50)]
|
public string PlanTime { get; set; }
|
|
[StringLength(50)]
|
public string OrderNo { get; set; }
|
|
[StringLength(5)]
|
public string OrderType { get; set; }
|
|
[StringLength(50)]
|
public string OutWarehouse { get; set; }
|
|
public int? OrderStatus { get; set; }
|
|
[StringLength(500)]
|
public string Remarks { get; set; }
|
|
public int? SourceBy { get; set; }
|
|
public int? Status { get; set; }
|
|
public long? TenantId { get; set; }
|
|
public DateTimeOffset? CreatedTime { get; set; }
|
|
public DateTimeOffset? UpdatedTime { get; set; }
|
|
public long? CreatedUserId { get; set; }
|
|
[StringLength(20)]
|
public string CreatedUserName { get; set; }
|
|
[StringLength(20)]
|
public string UpdatedUserName { get; set; }
|
|
public bool? IsDeleted { get; set; }
|
|
public long? UpdatedUserId { get; set; }
|
|
[StringLength(50)]
|
public string WareContainerCode { get; set; }
|
|
[StringLength(50)]
|
public string SiteCode { get; set; }
|
|
[StringLength(50)]
|
public string Process { get; set; }
|
|
public int? SortOrderIssueStatus { get; set; }
|
|
public int? OrderSortStatus { get; set; }
|
|
public int? OrderPickStatus { get; set; }
|
|
public int? OrderDeliverGoodsStatus { get; set; }
|
}
|
}
|