1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- namespace Central.Control.WebApi.Models.Response
- {
- /// <summary>
- ///
- /// </summary>
- public class DevicePackingResponseDto: DeviceCanUsePackingResponseDto
- {
- /// <summary>
- /// 主键ID
- /// </summary>
- public string Id { set; get; } = string.Empty;
- /// <summary>
- /// 容量
- /// </summary>
- public int Capacity { set; get; } = 1;
- /// <summary>
- /// 库存
- /// </summary>
- public int Stock { set; get; }
- }
- }
|