1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace wms.dto.request.sx
- {
- public class ProBoxWeightFeedBackRequest
- {
- public List<ProBoxWeightFeedBackRequestItem> ListInfo { get; set; }
- }
- public class ProBoxWeightFeedBackRequestItem
- {
- /// <summary>
- /// 箱号
- /// </summary>
- public string BoxNo { get; set; }
- /// <summary>
- /// 重量
- /// </summary>
- public decimal Weight { get; set; }
- }
- }
|