收货接口
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using System.Text;
|
||||
using WMS.Web.Core;
|
||||
using WMS.Web.Domain.Values;
|
||||
|
||||
namespace WMS.Web.Domain.Entitys
|
||||
@@ -11,12 +12,12 @@ namespace WMS.Web.Domain.Entitys
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
[Table("t_erp_instock_task")]
|
||||
public class InStockTask
|
||||
public class InStockTask : EntityBase
|
||||
{
|
||||
/// <summary>
|
||||
/// ID
|
||||
/// </summary>
|
||||
public int Id { get; set; }
|
||||
public override int Id { get; set; }
|
||||
/// <summary>
|
||||
/// 单据编号
|
||||
/// </summary>
|
||||
@@ -53,12 +54,12 @@ namespace WMS.Web.Domain.Entitys
|
||||
/// <summary>
|
||||
/// 箱信息集合
|
||||
/// </summary>
|
||||
public List<InStockTaskBox> Boxs = new List<InStockTaskBox>();
|
||||
public List<InStockTaskBox> Boxs { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 明细
|
||||
/// </summary>
|
||||
public List<InStockTaskDetails> Details = new List<InStockTaskDetails>();
|
||||
public List<InStockTaskDetails> Details { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建
|
||||
|
||||
Reference in New Issue
Block a user