using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BackupAndImport.速推客云端.Entitys { /// /// 云端速推客用户数据 /// public class STKMemberInfo { /// /// 查询索引 - 无用 /// public int numbers { get; set; } /// /// 用户id /// public string id { get; set; } /// /// 微信头像 /// public string wx_img { get; set; } /// /// 微信昵称 /// public string wx_name { get; set; } /// /// 用户id /// public string uid { get; set; } /// /// 备注 /// public string wx_note { get; set; } /// /// 用户账号 /// public string wx_id { get; set; } /// /// 分组 /// public string group_name { get; set; } /// /// 机器人昵称 /// public string robot_name { get; set; } /// /// 机器人id /// public string robot_id { get; set; } /// /// 上级wxid /// public string father_id { get; set; } /// /// 可提现 /// public string effec_money { get; set; } /// /// 已提现 /// public string take_money { get; set; } /// /// /// public string processing_money { get; set; } /// /// /// public int for_order_fee { get; set; } ///// ///// 创建时间 ///// //public DateTime create_time { get; set; } /// /// 固定率利 /// public string fixed_rate { get; set; } /// /// 积分变动时间 /// public string update_money_time { get; set; } /// /// 总订单数 /// public string order_num { get; set; } } }