DD.WellWorkover.Cloud/AsbCloudDb/Model/User.cs
2022-04-11 18:00:34 +05:00

86 lines
2.6 KiB
C#
Raw 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 Microsoft.EntityFrameworkCore;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
#nullable disable
namespace AsbCloudDb.Model
{
[Table("t_user"), Comment("Пользователи облака")]
public partial class User : IId
{
[Key]
[Column("id")]
public int Id { get; set; }
[Column("id_company")]
public int? IdCompany { get; set; }
[Column("login")]
[StringLength(255)]
public string Login { get; set; }
[Column("password_hash"), Comment("соленый хэш пароля.\nпервые 5 символов - соль")]
[StringLength(255)]
public string PasswordHash { get; set; }
[Column("state"), Comment("состояние:\n100 - удален")]
public short? IdState { get; set; }
[Column("name"), Comment("имя")]
[StringLength(255)]
public string Name { get; set; }
[Column("surname"), Comment("фамилия")]
[StringLength(255)]
public string Surname { get; set; }
[Column("patronymic"), Comment("отчество")]
[StringLength(255)]
public string Patronymic { get; set; }
[Column("email"), Comment("должность")]
[StringLength(255)]
public string Email { get; set; }
[Column("phone"), Comment("номер телефона")]
[StringLength(50)]
public string Phone { get; set; }
[Column("position"), Comment("email")]
[StringLength(255)]
public string Position { get; set; }
[ForeignKey(nameof(IdCompany))]
[InverseProperty(nameof(Model.Company.Users))]
public virtual Company Company { get; set; }
[InverseProperty(nameof(RelationUserUserRole.User))]
public virtual ICollection<RelationUserUserRole> RelationUsersUserRoles { get; set; }
[InverseProperty(nameof(FileInfo.Author))]
public virtual ICollection<FileInfo> Files { get; set; }
[InverseProperty(nameof(FileMark.User))]
public virtual ICollection<FileMark> FileMarks { get; set; }
public string MakeDisplayName()
{
if (string.IsNullOrEmpty(Surname))
return Login;
var s = Surname;
if (!string.IsNullOrEmpty(Name))
{
s += $"{Name[0]}.";
if (!string.IsNullOrEmpty(Patronymic))
s += $" {Patronymic[0]}.";
}
return s;
}
}
}