namespace Kean.Application.Query.ViewModels { /// /// 库房信息视图 /// public sealed class EmergencyStation { /// /// 站台 /// public string StationCode { get; set; } /// /// 模式 /// public string StationModel { get; set; } /// /// 1-WMS更改时标记为1; 2-WCS读取后标记为2 /// public string StationStatus { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 入/出 /// public string Inout { get; set; } } }