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#

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