| | |
| | | public string RoleName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 电话 |
| | | /// </summary> |
| | | [SugarColumn(Length = 11, IsNullable = true, ColumnDescription = "电话")] |
| | | public string PhoneNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 备注 |
| | | /// </summary> |
| | | [SugarColumn(Length = 200, IsNullable = true, ColumnDescription = "备注")] |
| | |
| | | public string UserTrueName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 部门 |
| | | /// </summary> |
| | | [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "部门")] |
| | | public string DeptName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 部门ID |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "部门ID")] |
| | | public int? Dept_Id { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 邮箱 |
| | | /// </summary> |
| | | [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "邮箱")] |
| | | public string Email { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 是否可用 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = false, ColumnDescription = "是否可用")] |
| | | public byte Enable { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 性别 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "性别")] |
| | | public int? Gender { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 头像 |
| | |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, IsOnlyIgnoreInsert = true, ColumnDescription = "最后密码修改时间")] |
| | | public DateTime? LastModifyPwdDate { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 地址 |
| | | /// </summary> |
| | | [SugarColumn(Length = 200, IsNullable = true, ColumnDescription = "地址")] |
| | | public string Address { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 审核时间 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "审核时间")] |
| | | public DateTime? AuditDate { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 审核状态 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "审核状态")] |
| | | public int? AuditStatus { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 审核人 |
| | | /// </summary> |
| | | [SugarColumn(Length = 100, IsNullable = true, ColumnDescription = "审核人")] |
| | | public string Auditor { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 令牌 |
| | | /// </summary> |
| | | [SugarColumn(Length = 500, IsNullable = true, ColumnDescription = "令牌")] |
| | | public string Token { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 租户ID |