using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace WMS.Web.Domain.Entitys
{
///
/// 箱库存表头
///
[Serializable]
[Table("t_wms_box_inventory")]
public class BoxInventory
{
///
/// ID
///
public int Id { get; set; }
///
/// 箱子ID
///
public int BoxId { get; set; }
///
/// 仓库ID
///
public int StockId { get; set; }
///
/// 仓库ID
///
public int SubStockId { get; set; }
///
/// 明细
///
public List Details = new List();
}
}