You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
917 B
C#

1 year ago
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.Core.Model.ViewModels
{
public class WarehouseView
{
12 months ago
/// <summary>
/// 主键
/// </summary>
1 year ago
public int ID { get; set; }
/// <summary>
/// 计划ID
/// </summary>
public string PlanId { get; set; }
/// <summary>
12 months ago
/// Desc:反应釜名称
1 year ago
/// Default:
/// Nullable:True
/// </summary>
public string Name { get; set; }
/// <summary>
12 months ago
/// Desc:反应釜二维码
1 year ago
/// Default:
/// Nullable:True
/// </summary>
public string BarCode { get; set; }
/// <summary>
/// 子菜单
/// </summary>
12 months ago
public List<HwWareHouseSubView> Children { get; set; } = new List<HwWareHouseSubView>();
1 year ago
}
}