using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JSMachine.WMS.Common.Dto.Http.In { /// /// PDA入库请求 /// public class StockInByPdaRequestParam { /// /// 合格证号(唯一) /// public string Barcode { get; set; } /// /// 库位 /// public string Warehouse { get; set; } } }