old_flsystem/应用/同步老妖联盟上下级关系/Entitys/MemberInfo.cs

108 lines
2.6 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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; }
/// <summary>
/// 群id
/// </summary>
public string groupid { get; set; }
/// <summary>
/// 群昵称
/// </summary>
[SugarColumn(IsNullable = true)]
public string groupnick { get; set; }
/// <summary>
/// 用户微信id
/// </summary>
public string username { get; set; }
/// <summary>
/// 微信上看到的微信号
/// </summary>
[SugarColumn(IsNullable = true)]
public string account { get; set; } = string.Empty;
/// <summary>
/// 用户昵称
/// </summary>
[SugarColumn(IsNullable = true)]
public string usernick { get; set; } = string.Empty;
/// <summary>
/// 性别 (0未知1男2女)
/// </summary>
public int sex { get; set; } = -1;
/// <summary>
/// 头像
/// </summary>
[SugarColumn(IsNullable = true)]
public string avatar { get; set; }
/// <summary>
/// 头像md5
/// </summary>
//[SugarColumn(IsNullable = true)]
//public string avatarMd5 { get; set; }
/// <summary>
/// 邀请者
/// </summary>
public int inviter { get; set; }
/// <summary>
/// 邀请数量
/// </summary>
public int invited_num { get; set; }
/// <summary>
/// 发送已拍次数
/// </summary>
public long yp_count { get; set; }
/// <summary>
/// 发送已拍时间
/// </summary>
public long yp_time { get; set; }
/// <summary>
/// 最后发言时间
/// </summary>
public long last_speak_time { get; set; }
/// <summary>
/// 进群时间
/// </summary>
public long join_time { get; set; } = 0;
/// <summary>
/// 退群时间
/// </summary>
public long quit_time { get; set; }
/// <summary>
/// 机器人账号
/// </summary>
public string robotname { get; set; } = string.Empty;
/// <summary>
/// 头像哈希值
/// </summary>
[SugarColumn(IsNullable = true)]
public string hashid { get; set; }
}
}