namespace iWareSql.MyDbContext
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("SortingOrderDetailsGroupIncludeDelted")]
|
public partial class SortingOrderDetailsGroupIncludeDelted
|
{
|
[Key]
|
[Column(Order = 0)]
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
public int OrderStatus { get; set; }
|
|
public int? SortOrderIssueStatus { get; set; }
|
|
public int? OrderPickStatus { get; set; }
|
|
public int? OrderSortStatus { get; set; }
|
|
public int? OrderDeliverGoodsStatus { get; set; }
|
|
[Key]
|
[Column(Order = 1)]
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
public long OrdersId { get; set; }
|
|
[StringLength(50)]
|
public string WareMaterialCode { get; set; }
|
|
[StringLength(200)]
|
public string WareMaterialName { get; set; }
|
|
public decimal? Quantity { get; set; }
|
|
public decimal? CompleteQuantity { get; set; }
|
|
public decimal? DeliveryQuantity { get; set; }
|
|
public decimal? HasPickQuantity { get; set; }
|
|
public decimal? HasDeliverQuantity { get; set; }
|
|
public string DeliveryNo { get; set; }
|
|
public string PlannedProductionDate { get; set; }
|
|
public string Equipment { get; set; }
|
|
public string Process { get; set; }
|
|
public string BOMNumber { get; set; }
|
|
public string Sap_Location { get; set; }
|
}
|
}
|