This commit is contained in:
tongfei
2024-01-05 15:32:06 +08:00
parent c9e368d82e
commit 765cec3c85
6 changed files with 126 additions and 30 deletions

View File

@@ -0,0 +1,31 @@
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_serialbumbers")]
public class BoxInventoryDetailsSerialNumbers : EntityBase
{
/// <summary>
/// ID
/// </summary>
public override int Id { get; set; }
/// <summary>
/// 上级明细ID
/// </summary>
public int DetailId { get; set; }
/// <summary>
/// 序列号
/// </summary>
public string SerialNumber { get; set; }
}
}