AccountAuthorization/LKJCpowerSupplyOfficeSimula.../Competition.Mysql/api/get_user_info.cs

24 lines
603 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Competition.Mysql.api
{
public class get_user_info
{
public int code { get; set; }
public string msg { get; set; }
public List<user_infoData> data { get; set; }
}
public class user_infoData
{
public string UserId { get; set; }
public string SchoolName { get; set; }
public string UserName { get; set; }
public string Identity { get; set; }
public DateTime CreateTime { get; set; }
}
}