namespace StopShopping.Services.Models.Resp; /// /// 列表需求 /// public class Request { public int Id { get; set; } /// /// 序列号 /// /// public string SerialNo { get; set; } = string.Empty; /// /// 状态 /// /// public RequestStatus Status { get; set; } /// /// 名称 /// /// public string Name { get; set; } = string.Empty; /// /// 描述 /// /// public string? Description { get; set; } /// /// 分类id /// /// public int CategoryId { get; set; } /// /// 分类名称 /// /// public string CategoryName { get; set; } = string.Empty; /// /// 发布者 /// /// public string Publisher { get; set; } = string.Empty; /// /// 发布时间 /// /// public string PublishTime { get; set; } = string.Empty; /// /// 截止日期 /// /// public string Deadline { get; set; } = string.Empty; /// /// 竞标者数量 /// /// public int ReplyAmount { get; set; } }