namespace StopShopping.Services.Models.Resp; /// /// 竞标 /// public class Reply { public int Id { get; set; } public int ProductId { get; set; } public string ProductName { get; set; } = string.Empty; /// /// 单价 /// /// public decimal UnitPrice { get; set; } /// /// 最小销售单元 /// /// public string MinimumUnit { get; set; } = string.Empty; /// /// 数量 /// /// public int Amount { get; set; } /// /// 竞标时间 /// /// public string ReplyTime { get; set; } = string.Empty; /// /// 竞标者 /// /// public string Replier { get; set; } = string.Empty; /// /// 留言 /// /// public string? Memo { get; set; } }