| 123456789101112131415161718192021222324 | using System;using System.Collections.Generic;using System.Text;namespace wms.dto.request.pt{    public class PurchaseBillTransFeedBackRequest    {        public string BillCode { get; set; } = "";        public string BillType { get; set; } = "";        public string ReqId { get; set; } = "";        public List<PurchaseBillTransFeedBackRequestItem> ListInfo { get; set; }    }    public class PurchaseBillTransFeedBackRequestItem    {        public string RFID { get; set; } = "";        public string RodBar { get; set; } = "";        public string MatBarCode { get; set; } = "";        public string WareCode { get; set; } = "";        public string WareName { get; set; } = "";        public string LocCode { get; set; } = "";    }}
 |