* Translated Views

* Added UserName entity, dto and mapping
* Changed some Dtos to use BaseClass
This commit is contained in:
2025-01-29 17:42:42 +01:00
parent 6df1857246
commit c39cd3a473
8 changed files with 157 additions and 27 deletions

View File

@@ -0,0 +1,42 @@
namespace SytelineSaAppEfDataModel.Entities;
public class UserName
{
public long UserId { get; set; }
public string Username { get; set; }
public short EditLevel { get; set; }
public bool SuperUserFlag { get; set; }
public string UserPassword { get; set; }
public string SQLServerLogin { get; set; }
public string SQLServerPassword { get; set; }
public string UserDesc { get; set; }
public string WorkstationLogin { get; set; }
public bool NoteExistsFlag { get; set; }
public string CreatedBy { get; set; }
public string UpdatedBy { get; set; }
public DateTime CreateDate { get; set; }
public DateTime RecordDate { get; set; }
public Guid RowPointer { get; set; }
public short ConcurrentSessions { get; set; }
public string ConcurrentSessionsSpec { get; set; }
public bool InWorkflow { get; set; }
public short Status { get; set; }
public DateTime? PasswordExpirationDate { get; set; }
public short LoginFailures { get; set; }
public DateTime? UnlockDate { get; set; }
public bool PasswordNeverExpires { get; set; }
public DateTime? EventMessagesLastCheckedTime { get; set; }
public bool SendEmailPrompts { get; set; }
public string LanguageCode { get; set; }
public string MobileDefaultForm { get; set; }
public bool SendEmailNotifications { get; set; }
public string EmailPromptsEmailType { get; set; }
public string EmailNotificationsEmailType { get; set; }
public string PrimaryEmailType { get; set; }
public string SourceControlUsername { get; set; }
public string SourceControlPassword { get; set; }
public string RfqProfile { get; set; }
public string RfqFaxNum { get; set; }
public string Uf_ZPL_EmpNum { get; set; }
public string Uf_PLT_EmpNum { get; set; }
}