using System.ComponentModel.DataAnnotations; namespace StopShopping.Services.Models.Req; /// /// 创建需求请求 /// /// public record CreateRequestParams { /// /// 商品名 /// /// [Required] [MaxLength(100)] public string Name { get; set; } = string.Empty; /// /// 描述 /// /// [MaxLength(1000)] public string? Description { get; set; } /// /// 分类id /// /// public int CategoryId { get; set; } /// /// 截止日期 /// /// [Required] [RegularExpression(@"^\d{4}\D\d{1,2}\D\d{1,2}$")] public string Deadline { get; set; } = string.Empty; }