using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace WMS.Web.Domain.Entitys
{
///
/// wms即时库存明细表
///
[Serializable]
[Table("t_wms_inventory_details")]
public class InventoryDetails
{
///
/// ID
///
public int Id { get; set; }
///
/// 物料ID
///
public int MaterialId { get; set; }
///
/// 仓库ID
///
public int StockId { get; set; }
///
/// 仓位ID
///
public int SubStockId { get; set; }
///
/// 库存量
///
public decimal Qty { get; set; }
}
}