using System.ComponentModel.DataAnnotations; using System.Text.Json.Serialization; namespace Blahblah.FlowerStory.Server.Controller; /// /// 评论参数 /// public record CommentParameter { /// /// 事件唯一 id /// [Required] public required int RecordId { get; init; } /// /// 内容 /// [Required] public required string Text { get; init; } /// /// 评论分类 id /// public int? TypeId { get; init; } /// /// 操作人姓名 /// public string? ByUser { get; init; } /// /// 纬度 /// [JsonPropertyName("lat")] public double? Latitude { get; init; } /// /// 经度 /// [JsonPropertyName("lon")] public double? Longitude { get; set; } }