namespace StopShopping.Services.Models.Req; /// /// 竞标参数 /// /// public record ReplyParams { /// /// 需求id /// /// public int RequestId { get; set; } /// /// 商品id /// /// public int ProductId { get; set; } /// /// 数量 /// /// public int Amount { get; set; } /// /// 价格 /// /// public decimal Price { get; set; } /// /// 留言 /// /// public string? Memo { get; set; } }