using SqlSugar;
using System;
///
/// 系统用户表
///
[SugarTable(null, "系统用户表")]
public class SysUser
{
///
/// 雪花Id
///
[SugarColumn(ColumnDescription = "Id", IsPrimaryKey = true, IsIdentity = false)]
public virtual long Id { get; set; }
///
/// 真实姓名
///
[SugarColumn(ColumnDescription = "真实姓名", Length = 32)]
public virtual string RealName { get; set; }
///
/// 昵称
///
[SugarColumn(ColumnDescription = "昵称", Length = 32)]
public string NickName { get; set; }
///
/// 头像
///
[SugarColumn(ColumnDescription = "头像", Length = 512)]
public string Avatar { get; set; }
///
/// 年龄
///
[SugarColumn(ColumnDescription = "年龄")]
public int Age { get; set; }
///
/// 出生日期
///
[SugarColumn(ColumnDescription = "出生日期")]
public DateTime? Birthday { get; set; }
///
/// 民族
///
[SugarColumn(ColumnDescription = "民族", Length = 32)]
public string Nation { get; set; }
///
/// 手机号码
///
[SugarColumn(ColumnDescription = "手机号码", Length = 16)]
public string Phone { get; set; }
///
/// 身份证号
///
[SugarColumn(ColumnDescription = "身份证号", Length = 32)]
public string IdCardNum { get; set; }
///
/// 邮箱
///
[SugarColumn(ColumnDescription = "邮箱", Length = 64)]
public string Email { get; set; }
///
/// 地址
///
[SugarColumn(ColumnDescription = "地址", Length = 256)]
public string Address { get; set; }
///
/// 政治面貌
///
[SugarColumn(ColumnDescription = "政治面貌", Length = 16)]
public string PoliticalOutlook { get; set; }
///
/// 毕业院校
/// COLLEGE
[SugarColumn(ColumnDescription = "毕业院校", Length = 128)]
public string College { get; set; }
///
/// 办公电话
///
[SugarColumn(ColumnDescription = "办公电话", Length = 16)]
public string OfficePhone { get; set; }
///
/// 紧急联系人
///
[SugarColumn(ColumnDescription = "紧急联系人", Length = 32)]
public string EmergencyContact { get; set; }
///
/// 紧急联系人电话
///
[SugarColumn(ColumnDescription = "紧急联系人电话", Length = 16)]
public string EmergencyPhone { get; set; }
///
/// 紧急联系人地址
///
[SugarColumn(ColumnDescription = "紧急联系人地址", Length = 256)]
public string EmergencyAddress { get; set; }
///
/// 个人简介
///
[SugarColumn(ColumnDescription = "个人简介", Length = 512)]
public string Introduction { get; set; }
}