using System.Collections.Generic; namespace Kean.Domain.Task.Models { /// /// 站台 /// public class Station { /// /// 标识 /// public int Id { get; set; } /// /// 库房 /// public int Warehouse { get; set; } /// /// 库区 /// public int Area { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 设备码 /// public string Device { get; set; } /// /// 是否可入 /// public bool AllowIn { get; set; } /// /// 是否可出 /// public bool AllowOut { get; set; } /// /// 负载规格 /// public Spec Spec { get; set; } /// /// 适配托盘 /// public IEnumerable Pallet { get; set; } /////////////////////////////////////// /// /// group /// public string Group { get; set; } } }