47 changed files with 0 additions and 1183 deletions
@ -1,27 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpAuditLogAction |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public Guid? TenantId { get; set; } |
|
||||
|
|
||||
public Guid AuditLogId { get; set; } |
|
||||
|
|
||||
public string? ServiceName { get; set; } |
|
||||
|
|
||||
public string? MethodName { get; set; } |
|
||||
|
|
||||
public string? Parameters { get; set; } |
|
||||
|
|
||||
public DateTime ExecutionTime { get; set; } |
|
||||
|
|
||||
public int ExecutionDuration { get; set; } |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
|
||||
|
|
||||
public virtual AbpAuditLog AuditLog { get; set; } = null!; |
|
||||
} |
|
@ -1,29 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpBackgroundJob |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public string JobName { get; set; } = null!; |
|
||||
|
|
||||
public string JobArgs { get; set; } = null!; |
|
||||
|
|
||||
public short TryCount { get; set; } |
|
||||
|
|
||||
public DateTime CreationTime { get; set; } |
|
||||
|
|
||||
public DateTime NextTryTime { get; set; } |
|
||||
|
|
||||
public DateTime? LastTryTime { get; set; } |
|
||||
|
|
||||
public bool? IsAbandoned { get; set; } |
|
||||
|
|
||||
public byte Priority { get; set; } |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
|
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
|
||||
} |
|
@ -1,23 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpBlob |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public Guid ContainerId { get; set; } |
|
||||
|
|
||||
public Guid? TenantId { get; set; } |
|
||||
|
|
||||
public string Name { get; set; } = null!; |
|
||||
|
|
||||
public byte[]? Content { get; set; } |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
|
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
|
||||
|
|
||||
public virtual AbpBlobContainer Container { get; set; } = null!; |
|
||||
} |
|
@ -1,19 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpBlobContainer |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public Guid? TenantId { get; set; } |
|
||||
|
|
||||
public string Name { get; set; } = null!; |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
|
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
|
||||
|
|
||||
public virtual ICollection<AbpBlob> AbpBlobs { get; set; } = new List<AbpBlob>(); |
|
||||
} |
|
@ -1,27 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpClaimType |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public string Name { get; set; } = null!; |
|
||||
|
|
||||
public bool Required { get; set; } |
|
||||
|
|
||||
public bool IsStatic { get; set; } |
|
||||
|
|
||||
public string? Regex { get; set; } |
|
||||
|
|
||||
public string? RegexDescription { get; set; } |
|
||||
|
|
||||
public string? Description { get; set; } |
|
||||
|
|
||||
public int ValueType { get; set; } |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
|
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
|
||||
} |
|
@ -1,29 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpEntityChange |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public Guid AuditLogId { get; set; } |
|
||||
|
|
||||
public Guid? TenantId { get; set; } |
|
||||
|
|
||||
public DateTime ChangeTime { get; set; } |
|
||||
|
|
||||
public byte ChangeType { get; set; } |
|
||||
|
|
||||
public Guid? EntityTenantId { get; set; } |
|
||||
|
|
||||
public string EntityId { get; set; } = null!; |
|
||||
|
|
||||
public string EntityTypeFullName { get; set; } = null!; |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
|
||||
|
|
||||
public virtual ICollection<AbpEntityPropertyChange> AbpEntityPropertyChanges { get; set; } = new List<AbpEntityPropertyChange>(); |
|
||||
|
|
||||
public virtual AbpAuditLog AuditLog { get; set; } = null!; |
|
||||
} |
|
@ -1,23 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpEntityPropertyChange |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public Guid? TenantId { get; set; } |
|
||||
|
|
||||
public Guid EntityChangeId { get; set; } |
|
||||
|
|
||||
public string? NewValue { get; set; } |
|
||||
|
|
||||
public string? OriginalValue { get; set; } |
|
||||
|
|
||||
public string PropertyName { get; set; } = null!; |
|
||||
|
|
||||
public string PropertyTypeFullName { get; set; } = null!; |
|
||||
|
|
||||
public virtual AbpEntityChange EntityChange { get; set; } = null!; |
|
||||
} |
|
@ -1,17 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpFeatureValue |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public string Name { get; set; } = null!; |
|
||||
|
|
||||
public string Value { get; set; } = null!; |
|
||||
|
|
||||
public string? ProviderName { get; set; } |
|
||||
|
|
||||
public string? ProviderKey { get; set; } |
|
||||
} |
|
@ -1,17 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpLinkUser |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public Guid SourceUserId { get; set; } |
|
||||
|
|
||||
public Guid? SourceTenantId { get; set; } |
|
||||
|
|
||||
public Guid TargetUserId { get; set; } |
|
||||
|
|
||||
public Guid? TargetTenantId { get; set; } |
|
||||
} |
|
@ -1,43 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpOrganizationUnit |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public Guid? TenantId { get; set; } |
|
||||
|
|
||||
public Guid? ParentId { get; set; } |
|
||||
|
|
||||
public string Code { get; set; } = null!; |
|
||||
|
|
||||
public string DisplayName { get; set; } = null!; |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
|
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
|
||||
|
|
||||
public DateTime CreationTime { get; set; } |
|
||||
|
|
||||
public Guid? CreatorId { get; set; } |
|
||||
|
|
||||
public DateTime? LastModificationTime { get; set; } |
|
||||
|
|
||||
public Guid? LastModifierId { get; set; } |
|
||||
|
|
||||
public bool? IsDeleted { get; set; } |
|
||||
|
|
||||
public Guid? DeleterId { get; set; } |
|
||||
|
|
||||
public DateTime? DeletionTime { get; set; } |
|
||||
|
|
||||
public virtual ICollection<AbpOrganizationUnitRole> AbpOrganizationUnitRoles { get; set; } = new List<AbpOrganizationUnitRole>(); |
|
||||
|
|
||||
public virtual ICollection<AbpUserOrganizationUnit> AbpUserOrganizationUnits { get; set; } = new List<AbpUserOrganizationUnit>(); |
|
||||
|
|
||||
public virtual ICollection<AbpOrganizationUnit> InverseParent { get; set; } = new List<AbpOrganizationUnit>(); |
|
||||
|
|
||||
public virtual AbpOrganizationUnit? Parent { get; set; } |
|
||||
} |
|
@ -1,21 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpOrganizationUnitRole |
|
||||
{ |
|
||||
public Guid RoleId { get; set; } |
|
||||
|
|
||||
public Guid OrganizationUnitId { get; set; } |
|
||||
|
|
||||
public Guid? TenantId { get; set; } |
|
||||
|
|
||||
public DateTime CreationTime { get; set; } |
|
||||
|
|
||||
public Guid? CreatorId { get; set; } |
|
||||
|
|
||||
public virtual AbpOrganizationUnit OrganizationUnit { get; set; } = null!; |
|
||||
|
|
||||
public virtual AbpRole Role { get; set; } = null!; |
|
||||
} |
|
@ -1,17 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpPermissionGrant |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public Guid? TenantId { get; set; } |
|
||||
|
|
||||
public string Name { get; set; } = null!; |
|
||||
|
|
||||
public string ProviderName { get; set; } = null!; |
|
||||
|
|
||||
public string ProviderKey { get; set; } = null!; |
|
||||
} |
|
@ -1,33 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpRole |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public Guid? TenantId { get; set; } |
|
||||
|
|
||||
public string Name { get; set; } = null!; |
|
||||
|
|
||||
public string NormalizedName { get; set; } = null!; |
|
||||
|
|
||||
public bool IsDefault { get; set; } |
|
||||
|
|
||||
public bool IsStatic { get; set; } |
|
||||
|
|
||||
public bool IsPublic { get; set; } |
|
||||
|
|
||||
public string? Description { get; set; } |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
|
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
|
||||
|
|
||||
public virtual ICollection<AbpOrganizationUnitRole> AbpOrganizationUnitRoles { get; set; } = new List<AbpOrganizationUnitRole>(); |
|
||||
|
|
||||
public virtual ICollection<AbpRoleClaim> AbpRoleClaims { get; set; } = new List<AbpRoleClaim>(); |
|
||||
|
|
||||
public virtual ICollection<AbpUserRole> AbpUserRoles { get; set; } = new List<AbpUserRole>(); |
|
||||
} |
|
@ -1,19 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpRoleClaim |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public Guid RoleId { get; set; } |
|
||||
|
|
||||
public Guid? TenantId { get; set; } |
|
||||
|
|
||||
public string ClaimType { get; set; } = null!; |
|
||||
|
|
||||
public string? ClaimValue { get; set; } |
|
||||
|
|
||||
public virtual AbpRole Role { get; set; } = null!; |
|
||||
} |
|
@ -1,37 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpSecurityLog |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public Guid? TenantId { get; set; } |
|
||||
|
|
||||
public string? ApplicationName { get; set; } |
|
||||
|
|
||||
public string? Identity { get; set; } |
|
||||
|
|
||||
public string? Action { get; set; } |
|
||||
|
|
||||
public Guid? UserId { get; set; } |
|
||||
|
|
||||
public string? UserName { get; set; } |
|
||||
|
|
||||
public string? TenantName { get; set; } |
|
||||
|
|
||||
public string? ClientId { get; set; } |
|
||||
|
|
||||
public string? CorrelationId { get; set; } |
|
||||
|
|
||||
public string? ClientIpAddress { get; set; } |
|
||||
|
|
||||
public string? BrowserInfo { get; set; } |
|
||||
|
|
||||
public DateTime CreationTime { get; set; } |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
|
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
|
||||
} |
|
@ -1,17 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpSetting |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public string Name { get; set; } = null!; |
|
||||
|
|
||||
public string Value { get; set; } = null!; |
|
||||
|
|
||||
public string? ProviderName { get; set; } |
|
||||
|
|
||||
public string? ProviderKey { get; set; } |
|
||||
} |
|
@ -1,31 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpTenant |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public string Name { get; set; } = null!; |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
|
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
|
||||
|
|
||||
public DateTime CreationTime { get; set; } |
|
||||
|
|
||||
public Guid? CreatorId { get; set; } |
|
||||
|
|
||||
public DateTime? LastModificationTime { get; set; } |
|
||||
|
|
||||
public Guid? LastModifierId { get; set; } |
|
||||
|
|
||||
public bool? IsDeleted { get; set; } |
|
||||
|
|
||||
public Guid? DeleterId { get; set; } |
|
||||
|
|
||||
public DateTime? DeletionTime { get; set; } |
|
||||
|
|
||||
public virtual ICollection<AbpTenantConnectionString> AbpTenantConnectionStrings { get; set; } = new List<AbpTenantConnectionString>(); |
|
||||
} |
|
@ -1,15 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpTenantConnectionString |
|
||||
{ |
|
||||
public Guid TenantId { get; set; } |
|
||||
|
|
||||
public string Name { get; set; } = null!; |
|
||||
|
|
||||
public string Value { get; set; } = null!; |
|
||||
|
|
||||
public virtual AbpTenant Tenant { get; set; } = null!; |
|
||||
} |
|
@ -1,75 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpUser |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public Guid? TenantId { get; set; } |
|
||||
|
|
||||
public string UserName { get; set; } = null!; |
|
||||
|
|
||||
public string NormalizedUserName { get; set; } = null!; |
|
||||
|
|
||||
public string? Name { get; set; } |
|
||||
|
|
||||
public string? Surname { get; set; } |
|
||||
|
|
||||
public string Email { get; set; } = null!; |
|
||||
|
|
||||
public string NormalizedEmail { get; set; } = null!; |
|
||||
|
|
||||
public bool? EmailConfirmed { get; set; } |
|
||||
|
|
||||
public string? PasswordHash { get; set; } |
|
||||
|
|
||||
public string SecurityStamp { get; set; } = null!; |
|
||||
|
|
||||
public bool? IsExternal { get; set; } |
|
||||
|
|
||||
public string? PhoneNumber { get; set; } |
|
||||
|
|
||||
public bool? PhoneNumberConfirmed { get; set; } |
|
||||
|
|
||||
public bool IsActive { get; set; } |
|
||||
|
|
||||
public bool? TwoFactorEnabled { get; set; } |
|
||||
|
|
||||
public DateTimeOffset? LockoutEnd { get; set; } |
|
||||
|
|
||||
public bool? LockoutEnabled { get; set; } |
|
||||
|
|
||||
public int AccessFailedCount { get; set; } |
|
||||
|
|
||||
public string? DepartmentCode { get; set; } |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
|
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
|
||||
|
|
||||
public DateTime CreationTime { get; set; } |
|
||||
|
|
||||
public Guid? CreatorId { get; set; } |
|
||||
|
|
||||
public DateTime? LastModificationTime { get; set; } |
|
||||
|
|
||||
public Guid? LastModifierId { get; set; } |
|
||||
|
|
||||
public bool? IsDeleted { get; set; } |
|
||||
|
|
||||
public Guid? DeleterId { get; set; } |
|
||||
|
|
||||
public DateTime? DeletionTime { get; set; } |
|
||||
|
|
||||
public virtual ICollection<AbpUserClaim> AbpUserClaims { get; set; } = new List<AbpUserClaim>(); |
|
||||
|
|
||||
public virtual ICollection<AbpUserLogin> AbpUserLogins { get; set; } = new List<AbpUserLogin>(); |
|
||||
|
|
||||
public virtual ICollection<AbpUserOrganizationUnit> AbpUserOrganizationUnits { get; set; } = new List<AbpUserOrganizationUnit>(); |
|
||||
|
|
||||
public virtual ICollection<AbpUserRole> AbpUserRoles { get; set; } = new List<AbpUserRole>(); |
|
||||
|
|
||||
public virtual ICollection<AbpUserToken> AbpUserTokens { get; set; } = new List<AbpUserToken>(); |
|
||||
} |
|
@ -1,19 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpUserClaim |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public Guid UserId { get; set; } |
|
||||
|
|
||||
public Guid? TenantId { get; set; } |
|
||||
|
|
||||
public string ClaimType { get; set; } = null!; |
|
||||
|
|
||||
public string? ClaimValue { get; set; } |
|
||||
|
|
||||
public virtual AbpUser User { get; set; } = null!; |
|
||||
} |
|
@ -1,19 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpUserLogin |
|
||||
{ |
|
||||
public Guid UserId { get; set; } |
|
||||
|
|
||||
public string LoginProvider { get; set; } = null!; |
|
||||
|
|
||||
public Guid? TenantId { get; set; } |
|
||||
|
|
||||
public string ProviderKey { get; set; } = null!; |
|
||||
|
|
||||
public string? ProviderDisplayName { get; set; } |
|
||||
|
|
||||
public virtual AbpUser User { get; set; } = null!; |
|
||||
} |
|
@ -1,21 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpUserOrganizationUnit |
|
||||
{ |
|
||||
public Guid UserId { get; set; } |
|
||||
|
|
||||
public Guid OrganizationUnitId { get; set; } |
|
||||
|
|
||||
public Guid? TenantId { get; set; } |
|
||||
|
|
||||
public DateTime CreationTime { get; set; } |
|
||||
|
|
||||
public Guid? CreatorId { get; set; } |
|
||||
|
|
||||
public virtual AbpOrganizationUnit OrganizationUnit { get; set; } = null!; |
|
||||
|
|
||||
public virtual AbpUser User { get; set; } = null!; |
|
||||
} |
|
@ -1,17 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpUserRole |
|
||||
{ |
|
||||
public Guid UserId { get; set; } |
|
||||
|
|
||||
public Guid RoleId { get; set; } |
|
||||
|
|
||||
public Guid? TenantId { get; set; } |
|
||||
|
|
||||
public virtual AbpRole Role { get; set; } = null!; |
|
||||
|
|
||||
public virtual AbpUser User { get; set; } = null!; |
|
||||
} |
|
@ -1,19 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class AbpUserToken |
|
||||
{ |
|
||||
public Guid UserId { get; set; } |
|
||||
|
|
||||
public string LoginProvider { get; set; } = null!; |
|
||||
|
|
||||
public string Name { get; set; } = null!; |
|
||||
|
|
||||
public Guid? TenantId { get; set; } |
|
||||
|
|
||||
public string? Value { get; set; } |
|
||||
|
|
||||
public virtual AbpUser User { get; set; } = null!; |
|
||||
} |
|
@ -1,47 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerApiResource |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public string Name { get; set; } = null!; |
|
||||
|
|
||||
public string? DisplayName { get; set; } |
|
||||
|
|
||||
public string? Description { get; set; } |
|
||||
|
|
||||
public bool Enabled { get; set; } |
|
||||
|
|
||||
public string? AllowedAccessTokenSigningAlgorithms { get; set; } |
|
||||
|
|
||||
public bool ShowInDiscoveryDocument { get; set; } |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
|
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
|
||||
|
|
||||
public DateTime CreationTime { get; set; } |
|
||||
|
|
||||
public Guid? CreatorId { get; set; } |
|
||||
|
|
||||
public DateTime? LastModificationTime { get; set; } |
|
||||
|
|
||||
public Guid? LastModifierId { get; set; } |
|
||||
|
|
||||
public bool? IsDeleted { get; set; } |
|
||||
|
|
||||
public Guid? DeleterId { get; set; } |
|
||||
|
|
||||
public DateTime? DeletionTime { get; set; } |
|
||||
|
|
||||
public virtual ICollection<IdentityServerApiResourceClaim> IdentityServerApiResourceClaims { get; set; } = new List<IdentityServerApiResourceClaim>(); |
|
||||
|
|
||||
public virtual ICollection<IdentityServerApiResourceProperty> IdentityServerApiResourceProperties { get; set; } = new List<IdentityServerApiResourceProperty>(); |
|
||||
|
|
||||
public virtual ICollection<IdentityServerApiResourceScope> IdentityServerApiResourceScopes { get; set; } = new List<IdentityServerApiResourceScope>(); |
|
||||
|
|
||||
public virtual ICollection<IdentityServerApiResourceSecret> IdentityServerApiResourceSecrets { get; set; } = new List<IdentityServerApiResourceSecret>(); |
|
||||
} |
|
@ -1,13 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerApiResourceClaim |
|
||||
{ |
|
||||
public string Type { get; set; } = null!; |
|
||||
|
|
||||
public Guid ApiResourceId { get; set; } |
|
||||
|
|
||||
public virtual IdentityServerApiResource ApiResource { get; set; } = null!; |
|
||||
} |
|
@ -1,15 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerApiResourceProperty |
|
||||
{ |
|
||||
public Guid ApiResourceId { get; set; } |
|
||||
|
|
||||
public string Key { get; set; } = null!; |
|
||||
|
|
||||
public string Value { get; set; } = null!; |
|
||||
|
|
||||
public virtual IdentityServerApiResource ApiResource { get; set; } = null!; |
|
||||
} |
|
@ -1,13 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerApiResourceScope |
|
||||
{ |
|
||||
public Guid ApiResourceId { get; set; } |
|
||||
|
|
||||
public string Scope { get; set; } = null!; |
|
||||
|
|
||||
public virtual IdentityServerApiResource ApiResource { get; set; } = null!; |
|
||||
} |
|
@ -1,19 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerApiResourceSecret |
|
||||
{ |
|
||||
public string Type { get; set; } = null!; |
|
||||
|
|
||||
public string Value { get; set; } = null!; |
|
||||
|
|
||||
public Guid ApiResourceId { get; set; } |
|
||||
|
|
||||
public string? Description { get; set; } |
|
||||
|
|
||||
public DateTime? Expiration { get; set; } |
|
||||
|
|
||||
public virtual IdentityServerApiResource ApiResource { get; set; } = null!; |
|
||||
} |
|
@ -1,45 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerApiScope |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public bool Enabled { get; set; } |
|
||||
|
|
||||
public string Name { get; set; } = null!; |
|
||||
|
|
||||
public string? DisplayName { get; set; } |
|
||||
|
|
||||
public string? Description { get; set; } |
|
||||
|
|
||||
public bool Required { get; set; } |
|
||||
|
|
||||
public bool Emphasize { get; set; } |
|
||||
|
|
||||
public bool ShowInDiscoveryDocument { get; set; } |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
|
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
|
||||
|
|
||||
public DateTime CreationTime { get; set; } |
|
||||
|
|
||||
public Guid? CreatorId { get; set; } |
|
||||
|
|
||||
public DateTime? LastModificationTime { get; set; } |
|
||||
|
|
||||
public Guid? LastModifierId { get; set; } |
|
||||
|
|
||||
public bool? IsDeleted { get; set; } |
|
||||
|
|
||||
public Guid? DeleterId { get; set; } |
|
||||
|
|
||||
public DateTime? DeletionTime { get; set; } |
|
||||
|
|
||||
public virtual ICollection<IdentityServerApiScopeClaim> IdentityServerApiScopeClaims { get; set; } = new List<IdentityServerApiScopeClaim>(); |
|
||||
|
|
||||
public virtual ICollection<IdentityServerApiScopeProperty> IdentityServerApiScopeProperties { get; set; } = new List<IdentityServerApiScopeProperty>(); |
|
||||
} |
|
@ -1,13 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerApiScopeClaim |
|
||||
{ |
|
||||
public string Type { get; set; } = null!; |
|
||||
|
|
||||
public Guid ApiScopeId { get; set; } |
|
||||
|
|
||||
public virtual IdentityServerApiScope ApiScope { get; set; } = null!; |
|
||||
} |
|
@ -1,15 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerApiScopeProperty |
|
||||
{ |
|
||||
public Guid ApiScopeId { get; set; } |
|
||||
|
|
||||
public string Key { get; set; } = null!; |
|
||||
|
|
||||
public string Value { get; set; } = null!; |
|
||||
|
|
||||
public virtual IdentityServerApiScope ApiScope { get; set; } = null!; |
|
||||
} |
|
@ -1,123 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerClient |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public string ClientId { get; set; } = null!; |
|
||||
|
|
||||
public string? ClientName { get; set; } |
|
||||
|
|
||||
public string? Description { get; set; } |
|
||||
|
|
||||
public string? ClientUri { get; set; } |
|
||||
|
|
||||
public string? LogoUri { get; set; } |
|
||||
|
|
||||
public bool Enabled { get; set; } |
|
||||
|
|
||||
public string ProtocolType { get; set; } = null!; |
|
||||
|
|
||||
public bool RequireClientSecret { get; set; } |
|
||||
|
|
||||
public bool RequireConsent { get; set; } |
|
||||
|
|
||||
public bool AllowRememberConsent { get; set; } |
|
||||
|
|
||||
public bool AlwaysIncludeUserClaimsInIdToken { get; set; } |
|
||||
|
|
||||
public bool RequirePkce { get; set; } |
|
||||
|
|
||||
public bool AllowPlainTextPkce { get; set; } |
|
||||
|
|
||||
public bool RequireRequestObject { get; set; } |
|
||||
|
|
||||
public bool AllowAccessTokensViaBrowser { get; set; } |
|
||||
|
|
||||
public string? FrontChannelLogoutUri { get; set; } |
|
||||
|
|
||||
public bool FrontChannelLogoutSessionRequired { get; set; } |
|
||||
|
|
||||
public string? BackChannelLogoutUri { get; set; } |
|
||||
|
|
||||
public bool BackChannelLogoutSessionRequired { get; set; } |
|
||||
|
|
||||
public bool AllowOfflineAccess { get; set; } |
|
||||
|
|
||||
public int IdentityTokenLifetime { get; set; } |
|
||||
|
|
||||
public string? AllowedIdentityTokenSigningAlgorithms { get; set; } |
|
||||
|
|
||||
public int AccessTokenLifetime { get; set; } |
|
||||
|
|
||||
public int AuthorizationCodeLifetime { get; set; } |
|
||||
|
|
||||
public int? ConsentLifetime { get; set; } |
|
||||
|
|
||||
public int AbsoluteRefreshTokenLifetime { get; set; } |
|
||||
|
|
||||
public int SlidingRefreshTokenLifetime { get; set; } |
|
||||
|
|
||||
public int RefreshTokenUsage { get; set; } |
|
||||
|
|
||||
public bool UpdateAccessTokenClaimsOnRefresh { get; set; } |
|
||||
|
|
||||
public int RefreshTokenExpiration { get; set; } |
|
||||
|
|
||||
public int AccessTokenType { get; set; } |
|
||||
|
|
||||
public bool EnableLocalLogin { get; set; } |
|
||||
|
|
||||
public bool IncludeJwtId { get; set; } |
|
||||
|
|
||||
public bool AlwaysSendClientClaims { get; set; } |
|
||||
|
|
||||
public string? ClientClaimsPrefix { get; set; } |
|
||||
|
|
||||
public string? PairWiseSubjectSalt { get; set; } |
|
||||
|
|
||||
public int? UserSsoLifetime { get; set; } |
|
||||
|
|
||||
public string? UserCodeType { get; set; } |
|
||||
|
|
||||
public int DeviceCodeLifetime { get; set; } |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
|
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
|
||||
|
|
||||
public DateTime CreationTime { get; set; } |
|
||||
|
|
||||
public Guid? CreatorId { get; set; } |
|
||||
|
|
||||
public DateTime? LastModificationTime { get; set; } |
|
||||
|
|
||||
public Guid? LastModifierId { get; set; } |
|
||||
|
|
||||
public bool? IsDeleted { get; set; } |
|
||||
|
|
||||
public Guid? DeleterId { get; set; } |
|
||||
|
|
||||
public DateTime? DeletionTime { get; set; } |
|
||||
|
|
||||
public virtual ICollection<IdentityServerClientClaim> IdentityServerClientClaims { get; set; } = new List<IdentityServerClientClaim>(); |
|
||||
|
|
||||
public virtual ICollection<IdentityServerClientCorsOrigin> IdentityServerClientCorsOrigins { get; set; } = new List<IdentityServerClientCorsOrigin>(); |
|
||||
|
|
||||
public virtual ICollection<IdentityServerClientGrantType> IdentityServerClientGrantTypes { get; set; } = new List<IdentityServerClientGrantType>(); |
|
||||
|
|
||||
public virtual ICollection<IdentityServerClientIdPrestriction> IdentityServerClientIdPrestrictions { get; set; } = new List<IdentityServerClientIdPrestriction>(); |
|
||||
|
|
||||
public virtual ICollection<IdentityServerClientPostLogoutRedirectUri> IdentityServerClientPostLogoutRedirectUris { get; set; } = new List<IdentityServerClientPostLogoutRedirectUri>(); |
|
||||
|
|
||||
public virtual ICollection<IdentityServerClientProperty> IdentityServerClientProperties { get; set; } = new List<IdentityServerClientProperty>(); |
|
||||
|
|
||||
public virtual ICollection<IdentityServerClientRedirectUri> IdentityServerClientRedirectUris { get; set; } = new List<IdentityServerClientRedirectUri>(); |
|
||||
|
|
||||
public virtual ICollection<IdentityServerClientScope> IdentityServerClientScopes { get; set; } = new List<IdentityServerClientScope>(); |
|
||||
|
|
||||
public virtual ICollection<IdentityServerClientSecret> IdentityServerClientSecrets { get; set; } = new List<IdentityServerClientSecret>(); |
|
||||
} |
|
@ -1,15 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerClientClaim |
|
||||
{ |
|
||||
public Guid ClientId { get; set; } |
|
||||
|
|
||||
public string Type { get; set; } = null!; |
|
||||
|
|
||||
public string Value { get; set; } = null!; |
|
||||
|
|
||||
public virtual IdentityServerClient Client { get; set; } = null!; |
|
||||
} |
|
@ -1,13 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerClientCorsOrigin |
|
||||
{ |
|
||||
public Guid ClientId { get; set; } |
|
||||
|
|
||||
public string Origin { get; set; } = null!; |
|
||||
|
|
||||
public virtual IdentityServerClient Client { get; set; } = null!; |
|
||||
} |
|
@ -1,13 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerClientGrantType |
|
||||
{ |
|
||||
public Guid ClientId { get; set; } |
|
||||
|
|
||||
public string GrantType { get; set; } = null!; |
|
||||
|
|
||||
public virtual IdentityServerClient Client { get; set; } = null!; |
|
||||
} |
|
@ -1,13 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerClientIdPrestriction |
|
||||
{ |
|
||||
public Guid ClientId { get; set; } |
|
||||
|
|
||||
public string Provider { get; set; } = null!; |
|
||||
|
|
||||
public virtual IdentityServerClient Client { get; set; } = null!; |
|
||||
} |
|
@ -1,13 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerClientPostLogoutRedirectUri |
|
||||
{ |
|
||||
public Guid ClientId { get; set; } |
|
||||
|
|
||||
public string PostLogoutRedirectUri { get; set; } = null!; |
|
||||
|
|
||||
public virtual IdentityServerClient Client { get; set; } = null!; |
|
||||
} |
|
@ -1,15 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerClientProperty |
|
||||
{ |
|
||||
public Guid ClientId { get; set; } |
|
||||
|
|
||||
public string Key { get; set; } = null!; |
|
||||
|
|
||||
public string Value { get; set; } = null!; |
|
||||
|
|
||||
public virtual IdentityServerClient Client { get; set; } = null!; |
|
||||
} |
|
@ -1,13 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerClientRedirectUri |
|
||||
{ |
|
||||
public Guid ClientId { get; set; } |
|
||||
|
|
||||
public string RedirectUri { get; set; } = null!; |
|
||||
|
|
||||
public virtual IdentityServerClient Client { get; set; } = null!; |
|
||||
} |
|
@ -1,13 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerClientScope |
|
||||
{ |
|
||||
public Guid ClientId { get; set; } |
|
||||
|
|
||||
public string Scope { get; set; } = null!; |
|
||||
|
|
||||
public virtual IdentityServerClient Client { get; set; } = null!; |
|
||||
} |
|
@ -1,19 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerClientSecret |
|
||||
{ |
|
||||
public string Type { get; set; } = null!; |
|
||||
|
|
||||
public string Value { get; set; } = null!; |
|
||||
|
|
||||
public Guid ClientId { get; set; } |
|
||||
|
|
||||
public string? Description { get; set; } |
|
||||
|
|
||||
public DateTime? Expiration { get; set; } |
|
||||
|
|
||||
public virtual IdentityServerClient Client { get; set; } = null!; |
|
||||
} |
|
@ -1,33 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerDeviceFlowCode |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public string DeviceCode { get; set; } = null!; |
|
||||
|
|
||||
public string UserCode { get; set; } = null!; |
|
||||
|
|
||||
public string? SubjectId { get; set; } |
|
||||
|
|
||||
public string? SessionId { get; set; } |
|
||||
|
|
||||
public string ClientId { get; set; } = null!; |
|
||||
|
|
||||
public string? Description { get; set; } |
|
||||
|
|
||||
public DateTime Expiration { get; set; } |
|
||||
|
|
||||
public string Data { get; set; } = null!; |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
|
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
|
||||
|
|
||||
public DateTime CreationTime { get; set; } |
|
||||
|
|
||||
public Guid? CreatorId { get; set; } |
|
||||
} |
|
@ -1,45 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerIdentityResource |
|
||||
{ |
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public string Name { get; set; } = null!; |
|
||||
|
|
||||
public string? DisplayName { get; set; } |
|
||||
|
|
||||
public string? Description { get; set; } |
|
||||
|
|
||||
public bool Enabled { get; set; } |
|
||||
|
|
||||
public bool Required { get; set; } |
|
||||
|
|
||||
public bool Emphasize { get; set; } |
|
||||
|
|
||||
public bool ShowInDiscoveryDocument { get; set; } |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
|
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
|
||||
|
|
||||
public DateTime CreationTime { get; set; } |
|
||||
|
|
||||
public Guid? CreatorId { get; set; } |
|
||||
|
|
||||
public DateTime? LastModificationTime { get; set; } |
|
||||
|
|
||||
public Guid? LastModifierId { get; set; } |
|
||||
|
|
||||
public bool? IsDeleted { get; set; } |
|
||||
|
|
||||
public Guid? DeleterId { get; set; } |
|
||||
|
|
||||
public DateTime? DeletionTime { get; set; } |
|
||||
|
|
||||
public virtual ICollection<IdentityServerIdentityResourceClaim> IdentityServerIdentityResourceClaims { get; set; } = new List<IdentityServerIdentityResourceClaim>(); |
|
||||
|
|
||||
public virtual ICollection<IdentityServerIdentityResourceProperty> IdentityServerIdentityResourceProperties { get; set; } = new List<IdentityServerIdentityResourceProperty>(); |
|
||||
} |
|
@ -1,13 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerIdentityResourceClaim |
|
||||
{ |
|
||||
public string Type { get; set; } = null!; |
|
||||
|
|
||||
public Guid IdentityResourceId { get; set; } |
|
||||
|
|
||||
public virtual IdentityServerIdentityResource IdentityResource { get; set; } = null!; |
|
||||
} |
|
@ -1,15 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerIdentityResourceProperty |
|
||||
{ |
|
||||
public Guid IdentityResourceId { get; set; } |
|
||||
|
|
||||
public string Key { get; set; } = null!; |
|
||||
|
|
||||
public string Value { get; set; } = null!; |
|
||||
|
|
||||
public virtual IdentityServerIdentityResource IdentityResource { get; set; } = null!; |
|
||||
} |
|
@ -1,33 +0,0 @@ |
|||||
using System; |
|
||||
using System.Collections.Generic; |
|
||||
|
|
||||
namespace WinIn.FasterZ.Wms.Z_Business; |
|
||||
|
|
||||
public partial class IdentityServerPersistedGrant |
|
||||
{ |
|
||||
public string Key { get; set; } = null!; |
|
||||
|
|
||||
public string Type { get; set; } = null!; |
|
||||
|
|
||||
public string? SubjectId { get; set; } |
|
||||
|
|
||||
public string? SessionId { get; set; } |
|
||||
|
|
||||
public string ClientId { get; set; } = null!; |
|
||||
|
|
||||
public string? Description { get; set; } |
|
||||
|
|
||||
public DateTime CreationTime { get; set; } |
|
||||
|
|
||||
public DateTime? Expiration { get; set; } |
|
||||
|
|
||||
public DateTime? ConsumedTime { get; set; } |
|
||||
|
|
||||
public string Data { get; set; } = null!; |
|
||||
|
|
||||
public Guid Id { get; set; } |
|
||||
|
|
||||
public string? ExtraProperties { get; set; } |
|
||||
|
|
||||
public string? ConcurrencyStamp { get; set; } |
|
||||
} |
|
Loading…
Reference in new issue