29 lines
812 B
C#
29 lines
812 B
C#
using System.Collections.Generic;
|
|
|
|
namespace GameLogic
|
|
{
|
|
|
|
[System.Serializable]
|
|
public class CompanyConfigDataItem
|
|
{
|
|
public int userId; // 用户ID
|
|
public int sortId; // 排序ID
|
|
public string userCode; // 用户代码
|
|
public string userAccount; // 用户账号
|
|
public string userName; // 用户名称
|
|
public string mobile; // 手机号码
|
|
public string status; // 状态
|
|
public string companyName; // 公司名称
|
|
public string logoPath; // 标志路径
|
|
public int industry; // 行业
|
|
}
|
|
|
|
|
|
[System.Serializable]
|
|
public class CompanyConfigRoot
|
|
{
|
|
public int code; // 状态码
|
|
public string message; // 消息
|
|
public List<CompanyConfigDataItem> data; // 数据列表
|
|
}
|
|
} |