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