44 lines
1.1 KiB
C#
44 lines
1.1 KiB
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_movebox_record_details")]
|
|
public class MoveBoxRecordDetails: EntityBase
|
|
{
|
|
public MoveBoxRecordDetails() { }
|
|
/// <summary>
|
|
/// 主键 订单编号
|
|
/// </summary>
|
|
[Column("Id")]
|
|
public override int Id { get; set; }
|
|
/// <summary>
|
|
/// 单据头Id
|
|
/// </summary>
|
|
[Column("Fid")]
|
|
public int Fid { get; set; }
|
|
/// <summary>
|
|
/// 物料Id
|
|
///</summary>
|
|
[Column("MaterialId")]
|
|
public int MaterialId { get; set; }
|
|
/// <summary>
|
|
/// 数量
|
|
/// </summary>
|
|
[Column("Qty")]
|
|
public decimal Qty { get; set; }
|
|
/// <summary>
|
|
/// 序列号
|
|
/// </summary>
|
|
[Column("SerialNumbers")]
|
|
public List<string> SerialNumbers { get; set; } = new List<string>();
|
|
}
|
|
}
|