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