This commit is contained in:
2026-03-25 14:55:34 +08:00
commit 2c44b3a4b2
131 changed files with 7453 additions and 0 deletions

View File

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