You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
909 B
48 lines
909 B
namespace Kean.Application.Query.ViewModels
|
|
{
|
|
/// <summary>
|
|
/// 库房信息视图
|
|
/// </summary>
|
|
public sealed class EmergencyStation
|
|
{
|
|
/// <summary>
|
|
/// 站台
|
|
/// </summary>
|
|
public string StationCode
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 模式
|
|
/// </summary>
|
|
public string StationModel
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 1-WMS更改时标记为1; 2-WCS读取后标记为2
|
|
/// </summary>
|
|
public string StationStatus
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string Remark
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 入/出
|
|
/// </summary>
|
|
public string Inout
|
|
{
|
|
get; set;
|
|
}
|
|
}
|
|
}
|