40 lines
957 B
C#
40 lines
957 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Text;
|
|
using WMS.Web.Core;
|
|
|
|
namespace WMS.Web.Domain.Entitys
|
|
{
|
|
/// <summary>
|
|
/// 箱库存明细表
|
|
/// </summary>
|
|
[Serializable]
|
|
[Table("t_wms_box_inventory_details")]
|
|
public class BoxInventoryDetails : EntityBase
|
|
{
|
|
/// <summary>
|
|
/// ID
|
|
/// </summary>
|
|
public override int Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 上级ID
|
|
/// </summary>
|
|
public int Fid { get; set; }
|
|
|
|
/// <summary>
|
|
/// 物料ID
|
|
/// </summary>
|
|
public int MaterialId { get; set; }
|
|
/// <summary>
|
|
/// 序列号集
|
|
/// </summary>
|
|
public List<string> SerialNumbers { get; set; } = new List<string>();
|
|
/// <summary>
|
|
/// 物料库存数量
|
|
/// </summary>
|
|
public decimal Qty { get; set; }
|
|
}
|
|
}
|