38 lines
976 B
C#
38 lines
976 B
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>
|
|
/// erp入库任务单的对应box箱信息表的明细表
|
|
/// </summary>
|
|
[Serializable]
|
|
[Table("t_erp_instock_task_box_details")]
|
|
public class InStockTaskBoxDetails : EntityBase
|
|
{
|
|
/// <summary>
|
|
/// ID
|
|
/// </summary>
|
|
public override int Id { get; set; } = 0;
|
|
/// <summary>
|
|
/// 上级ID
|
|
/// </summary>
|
|
public int Fid { get; set; }
|
|
/// <summary>
|
|
/// 对应金蝶的明细ID
|
|
/// </summary>
|
|
public int ErpDetailId { get; set; }
|
|
/// <summary>
|
|
/// 物料ID
|
|
/// </summary>
|
|
public int MaterialId { get; set; }
|
|
/// <summary>
|
|
/// 收货数量
|
|
/// </summary>
|
|
public decimal ReceiveQty { get; set; }
|
|
}
|
|
}
|