123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace wms.dto.request.sx
- {
- public class SXProductStockInFeedBackRequest:BaseRequest
- {
- public string WareCode { get; set; }
- public string WareName { get; set; }
- public string Type { get; set; }
- public List<SXProductStockInFeedBackRequestItem> ListInfo { get; set; }
- }
- public class SXProductStockInFeedBackRequestItem
- {
- /// <summary>
- /// 工字轮条码
- /// </summary>
- public string SpoolCode { get; set; }
- /// <summary>
- /// 材料号
- /// </summary>
- public string MatBarCode { get; set; }
- /// <summary>
- /// 库位号
- /// </summary>
- public string LocCode { get; set; }
- }
- }
|