using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Central.Control.WebApi.Models.Response { /// /// /// public class DeviceCanUsePackingResponseDto { /// /// 包装表id /// public string PackingId { set; get; } = string.Empty; /// /// 包装名称 /// public string PackingName { set; get; } = string.Empty; /// /// 包装图片 /// public string PackingImg { set; get; } = string.Empty; /// /// 最小可装个数 /// public int PackingMin { set; get; } = 1; /// /// 最大可装个数 /// public int PackingMax { set; get; } = 1; } }