32 lines
737 B
C#
32 lines
737 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Complaint.Domain.Dto
|
|
{
|
|
public class UserInfoDto
|
|
{
|
|
[JsonPropertyName("uid")]
|
|
public string? Uid { get; set; }
|
|
|
|
[JsonPropertyName("appid")]
|
|
public string? Appid { get; set; }
|
|
|
|
[JsonPropertyName("appuserid")]
|
|
public string? Appuserid { get; set; }
|
|
|
|
[JsonPropertyName("customerid")]
|
|
public string? Customerid { get; set; }
|
|
|
|
[JsonPropertyName("resid")]
|
|
public string? Resid { get; set; }
|
|
|
|
[JsonPropertyName("unionid")]
|
|
public string? Unionid { get; set; }
|
|
|
|
public string? Ch { get; set; }
|
|
}
|
|
}
|