using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Central.Control.WebApi.Models.Request { /// /// /// public class DevicePackingRequestDto { /// /// 包装表id /// public string PackingId { set; get; } = string.Empty; /// /// 容量 /// public int Capacity { set; get; } = 1; /// /// 库存 /// public int Stock { set; get; } } }