using System; using System.Collections.Generic; using System.Linq; using System.Data; using System.Threading; using MySystem.PxcModels; using Library; using LitJson; namespace MySystem { public class UserRankItem { public int UserType { set; get; } public int UserLevel { set; get; } public int LeaderLevel { set; get; } public int AgoLeaderLevel { set; get; } public int OperateLevel { set; get; } public int Id { set; get; } public int ParentUserId { set; get; } public string ParentNav { set; get; } public string MakerCode { set; get; } public string RealName { set; get; } public int MerchantType { set; get; } } }