You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
931 B
33 lines
931 B
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; }
|
|
}
|
|
}
|
|
|