| 1234567891011121314151617181920 | using System;using System.Collections.Generic;using System.Text;namespace wms.dto.request.pt{    public class ErpUnlockStockRequest:BaseRequest    {        public string BillCode { get; set; } = "";        public string ReqId { get; set; } = "";        public string WareCode { get; set; } = "";        public List<ErpUnlockStockRequestItem> ListInfo { get; set; }    }    public class ErpUnlockStockRequestItem    {        public string RFID { get; set; } = "";        public string MatBarCode { get; set; } = "";        public string State { get; set; } = "";    }}
 |