You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
980 B
37 lines
980 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ChangKeTec.Wms.Models.Wms
|
|
{
|
|
public partial class VIEW_STOCK_REPORT
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[StringLength(50)]
|
|
public string PartCode { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 2)]
|
|
public string VendId { get; set; }
|
|
/// <summary>
|
|
/// WMS待检验数量
|
|
/// </summary>
|
|
public decimal InspectQty { get; set; }
|
|
/// <summary>
|
|
/// WMS合格数量
|
|
/// </summary>
|
|
public decimal QualifiedQty { get; set; }
|
|
/// <summary>
|
|
/// SCP待开票数量
|
|
/// </summary>
|
|
[NotMapped]
|
|
public decimal InvoiceQty { get; set; }
|
|
[NotMapped]
|
|
public List<string> UserInVendIds { set; get; }
|
|
}
|
|
}
|
|
|