using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace 同步老妖联盟上下级关系.Entitys
{
public class MemberInfo
{
[SugarColumn(IsNullable = false, IsPrimaryKey = true, IsIdentity = true)]
public int id { get; set; }
///
/// 群id
///
public string groupid { get; set; }
///
/// 群昵称
///
[SugarColumn(IsNullable = true)]
public string groupnick { get; set; }
///
/// 用户微信id
///
public string username { get; set; }
///
/// 微信上看到的微信号
///
[SugarColumn(IsNullable = true)]
public string account { get; set; } = string.Empty;
///
/// 用户昵称
///
[SugarColumn(IsNullable = true)]
public string usernick { get; set; } = string.Empty;
///
/// 性别 (0未知,1男,2女)
///
public int sex { get; set; } = -1;
///
/// 头像
///
[SugarColumn(IsNullable = true)]
public string avatar { get; set; }
///
/// 头像md5
///
//[SugarColumn(IsNullable = true)]
//public string avatarMd5 { get; set; }
///
/// 邀请者
///
public int inviter { get; set; }
///
/// 邀请数量
///
public int invited_num { get; set; }
///
/// 发送已拍次数
///
public long yp_count { get; set; }
///
/// 发送已拍时间
///
public long yp_time { get; set; }
///
/// 最后发言时间
///
public long last_speak_time { get; set; }
///
/// 进群时间
///
public long join_time { get; set; } = 0;
///
/// 退群时间
///
public long quit_time { get; set; }
///
/// 机器人账号
///
public string robotname { get; set; } = string.Empty;
///
/// 头像哈希值
///
[SugarColumn(IsNullable = true)]
public string hashid { get; set; }
}
}