This commit is contained in:
tongfei
2023-10-26 14:39:51 +08:00
parent 52c0f475d3
commit 6e3783e1fd
9 changed files with 264 additions and 11 deletions

View File

@@ -0,0 +1,32 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace WMS.Web.Domain.Entitys
{
/// <summary>
/// 箱库存明细表
/// </summary>
[Serializable]
[Table("t_wms_box_inventory_details")]
public class BoxInventoryDetails
{
/// <summary>
/// ID
/// </summary>
public int Id { get; set; }
/// <summary>
/// 物料ID
/// </summary>
public int MaterialId { get; set; }
/// <summary>
/// 序列号集
/// </summary>
public string SerialNumbers { get; set; }
/// <summary>
/// 物料库存数量
/// </summary>
public decimal Qty { get; set; }
}
}