using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MES.Production.Entity.ResponseMod.DeviceMgt { /// /// /// public class DeviceMgtIndexDto { /// /// 主键ID /// public string Id { set; get; } = string.Empty; /// /// 设备名称 /// public string Name { set; get; } = string.Empty; /// /// 设备编号(唯一) /// public string Code { set; get; } = string.Empty; /// /// 设备地址 /// public string Address { set; get; } = string.Empty; #region 商品信息 /// /// 设备商品主键 /// public string DeviceProductId { set; get; } = string.Empty; /// /// 商品id /// public string ProductId { set; get; } = string.Empty; /// /// 商品名称 /// public string ProductName { set; get; } = string.Empty; /// /// 售卖价 /// public decimal ProductPrice { set; get; } /// /// 库存 /// public int ProductStock { set; get; } #endregion #region 打包盒信息 /// /// 设备包装主键 /// public string DevicePackingId { set; get; } = string.Empty; /// /// 包装表id /// public string PackingId { set; get; } = string.Empty; /// /// 包装名称 /// public string PackingName { set; get; } = string.Empty; /// /// 容量 /// public int PackingCapacity { set; get; } = 1; /// /// 库存 /// public int PackingStock { set; get; } #endregion } }