using LJLib.Net.SPI.Com;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace LJProxy.Models
{
public class GetAppUserInfoRequest:LJRequest
{
public string fundid { get; set; }
public string oldToken { get; set; }
}
public class GetAppUserInfoResponse : LJResponse
{
///
/// 用户功能ID列表
///
public string rsltFunids { get; set; }
///
/// 用户语言
///
public string langcode { get; set; }
//以下格式未定
///
/// 用户权限列表
///
public string userPower { get; set; }
///
/// 用户时区
///
public string timezone { get; set; }
///
/// 用户所在工组的工序技能
///
public string usercando { get; set; }
///
/// 系统基础标签
///
public string[] basicLabel { get; set; }
}
}