箱库存获取-修复

This commit is contained in:
tongfei
2023-12-18 10:34:14 +08:00
parent 73f6b42164
commit 9afc872c34
4 changed files with 83 additions and 10 deletions

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto.Inventory
{
/// <summary>
/// 盘点-原来箱子
/// </summary>
public class BoxTaskGenerateDto
{
/// <summary>
/// 箱子ID
/// </summary>
public int BoxId { get; set; }
/// <summary>
/// 类型1为入库2为出库
/// </summary>
public int InventoryInOutType { get; set; }
}
}