using System.ComponentModel.DataAnnotations; namespace Blahblah.FlowerStory.Server.Controller; /// /// 花草参数 /// public record FlowerParameter { /// /// 类别 id /// [Required] public int CategoryId { get; init; } /// /// 花草名称 /// [Required] public required string Name { get; init; } /// /// 购买时间 /// [Required] public long DateBuy { get; init; } /// /// 购买花费 /// public decimal? Cost { get; init; } /// /// 购买渠道 /// public string? Purchase { get; init; } } /// /// 花草修改参数 /// public record FlowerUpdateParameter : FlowerParameter { /// /// 花草唯一 id /// [Required] public int Id { get; set; } }