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

56 lines
965 B

3 months ago
using System;
namespace Kean.Application.Command.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;
}
}
}