收货接口优化

This commit is contained in:
tongfei
2023-11-03 16:02:47 +08:00
parent 9086b03616
commit 79eeeeb697
9 changed files with 133 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.InStockTask
{
/// <summary>
/// 箱信息和任务单绑定
/// </summary>
public class UpdateInStockTaskBoxRequest : EntityBase
{
/// <summary>
/// ID
/// </summary>
public override int Id { get; set; } = 0;
/// <summary>
/// 入库任务单ID
/// </summary>
public int TaskId { get; set; }
/// <summary>
/// 箱信息ID
/// </summary>
public int BoxId { get; set; }
}
}