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.
63 lines
1.8 KiB
63 lines
1.8 KiB
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
|
|
{
|
|
public class UserModel
|
|
{
|
|
[JsonPropertyName("createTime")]
|
|
public string CreateTime { get; init; } = string.Empty;
|
|
|
|
[JsonPropertyName("deptId")]
|
|
public int DeptId { get; init; }
|
|
|
|
[JsonPropertyName("email")]
|
|
public string Email { get; init; } = string.Empty;
|
|
|
|
[JsonPropertyName("id")]
|
|
public int Id { get; init; }
|
|
|
|
[JsonPropertyName("image")]
|
|
public string Image { get; init; } = string.Empty;
|
|
|
|
[JsonPropertyName("local")]
|
|
public string Local { get; init; } = string.Empty;
|
|
|
|
[JsonPropertyName("nickName")]
|
|
public string NickName { get; init; } = string.Empty;
|
|
|
|
[JsonPropertyName("phone")]
|
|
public string Phone { get; init; } = string.Empty;
|
|
|
|
[JsonPropertyName("remark")]
|
|
public string Remark { get; init; } = string.Empty;
|
|
|
|
[JsonPropertyName("sex")]
|
|
public string Sex { get; init; } = string.Empty;
|
|
|
|
[JsonPropertyName("updateTime")]
|
|
public string UpdateTime { get; init; } = string.Empty;
|
|
|
|
[JsonPropertyName("userName")]
|
|
public string UserName { get; init; } = string.Empty;
|
|
|
|
[JsonPropertyName("userStatus")]
|
|
public string UserStatus { get; init; } = string.Empty;
|
|
|
|
[JsonPropertyName("userType")]
|
|
public string UserType { get; init; } = string.Empty;
|
|
|
|
[JsonPropertyName("uuid")]
|
|
public string Uuid { get; init; } = string.Empty;
|
|
|
|
[JsonPropertyName("workerAccount")]
|
|
public string WorkerAccount { get; init; } = string.Empty;
|
|
|
|
[JsonPropertyName("workerId")]
|
|
public int WorkerId { get; init; }
|
|
}
|
|
}
|
|
|