first commit

This commit is contained in:
2026-09-02 16:31:50 +08:00
commit a461727193
911 changed files with 692450 additions and 0 deletions
@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JSMachine.WMS.Common.Dto.Http.In
{
/// <summary>
/// PDA入库请求
/// </summary>
public class StockInByPdaRequestParam
{
/// <summary>
/// 合格证号(唯一)
/// </summary>
public string Barcode { get; set; }
/// <summary>
/// 库位
/// </summary>
public string Warehouse { get; set; }
}
}