| 1234567891011121314151617181920212223242526272829 | using System;using System.Collections.Generic;using System.Text;namespace wms.dto.request.hj{    /// <summary>    /// 特殊出库领料反馈请求    /// </summary>    public class SpecialPickMaterFeedBackRequest    {       public List<SpecialPickMaterFeedBackRequestItem> ListInfo { get; set; }    }    public class SpecialPickMaterFeedBackRequestItem    {        /// <summary>        /// 材料号        /// </summary>        public string MatBarCode { get; set; }        /// <summary>        /// RFID值        /// </summary>        public string RFID { get; set; }        /// <summary>        /// 物料编码        /// </summary>        public string MatCode { get; set; }    }}
 |