35 lines
805 B
C#
35 lines
805 B
C#
using Microsoft.VisualBasic;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Entity.UserCenter
|
|
{
|
|
public class UserInfo
|
|
{
|
|
[Key]
|
|
[JsonPropertyName("uid")]
|
|
public int Uid { get; set; }
|
|
|
|
[JsonPropertyName("appid")]
|
|
public string? Appid { get; set; }
|
|
|
|
[JsonPropertyName("appuserid")]
|
|
public string? Appuserid { get; set; }
|
|
|
|
[JsonPropertyName("customerid")]
|
|
public int Customerid { get; set; }
|
|
|
|
[JsonPropertyName("resid")]
|
|
public string? Resid { get; set; }
|
|
|
|
[JsonPropertyName("unionid")]
|
|
public string? Unionid { get; set; }
|
|
|
|
public int Ch { get; set; }
|
|
}
|
|
}
|