yo
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user