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.
29 lines
599 B
29 lines
599 B
3 months ago
|
namespace Kean.Application.Query.ViewModels
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 库房信息视图
|
||
|
/// </summary>
|
||
|
public sealed class Warehouse
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 标识
|
||
|
/// </summary>
|
||
|
public int Id { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 库房编码
|
||
|
/// </summary>
|
||
|
public string Code { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 库房名称
|
||
|
/// </summary>
|
||
|
public string Name { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 备注信息
|
||
|
/// </summary>
|
||
|
public string Remark { get; set; }
|
||
|
}
|
||
|
}
|