using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
using WMS.Web.Core;
namespace WMS.Web.Domain.Entitys
{
///
/// 对应金蝶的明细
///
[Serializable]
[Table("t_wms_outstock_boxs_details")]
public class OutStockBoxsDetails : EntityBase
{
public OutStockBoxsDetails() { }
///
/// 主键 订单编号
///
[Column("Id")]
public override int Id { get; set; }
///
/// 任务单明细Id
///
[Column("DetailId")]
public int DetailId { get; set; }
///
/// 任务单明细Id
///
[Column("BoxId")]
public int BoxId { get; set; }
///
/// 序列号
///
[Column("SerialNumbers")]
public List SerialNumbers { get; set; } = new List();
///
/// 仓位
///
[Column("SubStockId")]
public int SubStockId { get; set; }
///
/// 出库数量
///
[Column("Qty")]
public decimal Qty { get; set; }
}
}