You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
678 B
C#

using RoBot.Core;
namespace RoBot.Start.Service.Dto
{
public class GoodsInfo
{
/// <summary>
/// 物品名称
/// </summary>
public string Name { get; set; }
/// <summary>
/// 实际价格
/// </summary>
public decimal Price { get; set; }
/// <summary>
/// 展示价格
/// </summary>
public string ShowPriceDesc { get; set; }
/// <summary>
/// 价格更新时间
/// </summary>
public DateTime LastUpdateTime { get; set; }
/// <summary>
/// 数量
/// </summary>
public int? Num { get; set; }
}
}