using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.Json.Serialization; using System.Threading.Tasks; namespace AIK.Models.ApiModels.Integral { public class IntegralRecord { [JsonPropertyName("craeteTime")] // 注意:JSON 中拼写为 "craeteTime"(应为 createTime) public string CraeteTime { get; set; } = string.Empty; [JsonPropertyName("createUser")] public string CreateUser { get; set; } = string.Empty; [JsonPropertyName("fh")] public string Fh { get; set; } = string.Empty; [JsonPropertyName("id")] public int Id { get; set; } [JsonPropertyName("remark")] public string Remark { get; set; } = string.Empty; [JsonPropertyName("score")] public int Score { get; set; } [JsonPropertyName("userId")] public int UserId { get; set; } } }