using Business.Domain; using Microsoft.EntityFrameworkCore; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Business.StructuredDB.WMS { /// /// 平台规格库存对照 /// [Comment("平台规格库存对照")] public class WMS_PlatformInventory : BaseEntity { /// /// 仓库 /// [Comment("仓库")] public string Location { get; set; } /// /// 规格或货品编码 /// [Comment("规格或货品编码")] public string SpecificationModel { get; set; } /// /// 批号 /// [Comment("批号")] public string BatchNumber { get; set; } /// /// 数量 /// [Comment("数量")] public decimal InventoryQuantity { get; set; } /// /// 有效期 /// [Comment("有效期")] public DateTime PeriodOfValidity { get; set; } /// /// 编码 /// [Comment("编码")] public string Code { get; set; } /// /// SAP料号 /// [Comment("SAP料号")] public string SAPItemNumber { get; set; } } }