山东雷驰
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.
 
 
 
 

55 lines
963 B

using System;
namespace Kean.Application.Query.ViewModels
{
/// <summary>
///
/// </summary>
public sealed class Item
{
public int ItemListId
{
get; set;
}
public int ItemId
{
get; set;
}
public string ItemCode
{
get; set;
}
/// <summary>
/// 名称
/// </summary>
public string ItemName
{
get; set;
}
/// <summary>
/// 编码
/// </summary>
public string Code { get; set; }
public string Id
{
get
{
return Code;
}
}
/// <summary>
/// 名称
/// </summary>
public string Name { get; set; }
/// <summary>
///
/// </summary>
public string Remark
{
get; set;
}
}
}