276 changed files with 15317 additions and 0 deletions
@ -0,0 +1,59 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class AbpAuditLog |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string? ApplicationName { get; set; } |
|||
|
|||
public Guid? UserId { get; set; } |
|||
|
|||
public string? UserName { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public string? TenantName { get; set; } |
|||
|
|||
public Guid? ImpersonatorUserId { get; set; } |
|||
|
|||
public string? ImpersonatorUserName { get; set; } |
|||
|
|||
public Guid? ImpersonatorTenantId { get; set; } |
|||
|
|||
public string? ImpersonatorTenantName { get; set; } |
|||
|
|||
public DateTime ExecutionTime { get; set; } |
|||
|
|||
public int ExecutionDuration { get; set; } |
|||
|
|||
public string? ClientIpAddress { get; set; } |
|||
|
|||
public string? ClientName { get; set; } |
|||
|
|||
public string? ClientId { get; set; } |
|||
|
|||
public string? CorrelationId { get; set; } |
|||
|
|||
public string? BrowserInfo { get; set; } |
|||
|
|||
public string? HttpMethod { get; set; } |
|||
|
|||
public string? Url { get; set; } |
|||
|
|||
public string? Exceptions { get; set; } |
|||
|
|||
public string? Comments { get; set; } |
|||
|
|||
public int? HttpStatusCode { get; set; } |
|||
|
|||
public string? ExtraProperties { get; set; } |
|||
|
|||
public string? ConcurrencyStamp { get; set; } |
|||
|
|||
public virtual ICollection<AbpAuditLogAction> AbpAuditLogActions { get; set; } = new List<AbpAuditLogAction>(); |
|||
|
|||
public virtual ICollection<AbpEntityChange> AbpEntityChanges { get; set; } = new List<AbpEntityChange>(); |
|||
} |
@ -0,0 +1,27 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,29 @@ |
|||
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; } |
|||
} |
@ -0,0 +1,23 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,19 @@ |
|||
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>(); |
|||
} |
@ -0,0 +1,27 @@ |
|||
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; } |
|||
} |
@ -0,0 +1,29 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,23 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,17 @@ |
|||
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; } |
|||
} |
@ -0,0 +1,17 @@ |
|||
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; } |
|||
} |
@ -0,0 +1,43 @@ |
|||
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; } |
|||
} |
@ -0,0 +1,21 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,17 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,33 @@ |
|||
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>(); |
|||
} |
@ -0,0 +1,19 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,37 @@ |
|||
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; } |
|||
} |
@ -0,0 +1,17 @@ |
|||
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; } |
|||
} |
@ -0,0 +1,31 @@ |
|||
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>(); |
|||
} |
@ -0,0 +1,15 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,75 @@ |
|||
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>(); |
|||
} |
@ -0,0 +1,19 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,19 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,21 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,17 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,19 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,33 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class AuthDepartment |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public bool? IsActive { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,53 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class AuthMenu |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string Name { get; set; } = null!; |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string? Icon { get; set; } |
|||
|
|||
public string? Route { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
|
|||
public int Sort { get; set; } |
|||
|
|||
public string Portal { get; set; } = null!; |
|||
|
|||
public string? ParentCode { get; set; } |
|||
|
|||
public string? Permission { get; set; } |
|||
|
|||
public string? Component { get; set; } |
|||
|
|||
public string? GroupName { get; set; } |
|||
|
|||
public int GroupSort { get; set; } |
|||
|
|||
public string? CountUrl { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,31 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class AuthUserMenu |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid UserId { get; set; } |
|||
|
|||
public string MenuCode { get; set; } = null!; |
|||
|
|||
public string Portal { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,29 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class AuthUserWorkGroup |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid UserId { get; set; } |
|||
|
|||
public string WorkGroupCode { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,41 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataAql |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string SupplierCode { get; set; } = null!; |
|||
|
|||
public string? AbcClass { get; set; } |
|||
|
|||
public decimal FloorQty { get; set; } |
|||
|
|||
public decimal CeilingQty { get; set; } |
|||
|
|||
public decimal SamplePercent { get; set; } |
|||
|
|||
public decimal SampleQty { get; set; } |
|||
|
|||
public bool IsUsePercent { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,37 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataArea |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
|
|||
public string AreaType { get; set; } = null!; |
|||
|
|||
public bool IsFunctional { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,49 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataBom |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Product { get; set; } = null!; |
|||
|
|||
public string Component { get; set; } = null!; |
|||
|
|||
public string? ComponentUom { get; set; } |
|||
|
|||
public decimal ComponentQty { get; set; } |
|||
|
|||
public DateTime? BeginTime { get; set; } |
|||
|
|||
public DateTime? EndTime { get; set; } |
|||
|
|||
public string? Erpop { get; set; } |
|||
|
|||
public int Layer { get; set; } |
|||
|
|||
public string? Mfgop { get; set; } |
|||
|
|||
public string DistributionType { get; set; } = null!; |
|||
|
|||
public string TruncType { get; set; } = null!; |
|||
|
|||
public string PlannedSplitRule { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,33 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataCalendar |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string? Module { get; set; } |
|||
|
|||
public DateTime? BeginTime { get; set; } |
|||
|
|||
public DateTime? EndTime { get; set; } |
|||
|
|||
public string Status { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,31 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataCategory |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,33 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataCurrency |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Name { get; set; } = null!; |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public bool IsBasicCurrency { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,35 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataCurrencyExchange |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid CurrencyId { get; set; } |
|||
|
|||
public Guid BasicCurrencyId { get; set; } |
|||
|
|||
public decimal Rate { get; set; } |
|||
|
|||
public DateTime EfficetiveTime { get; set; } |
|||
|
|||
public DateTime ExpireTime { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,51 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataCustomer |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? ShortName { get; set; } |
|||
|
|||
public string? Address { get; set; } |
|||
|
|||
public string? Country { get; set; } |
|||
|
|||
public string? City { get; set; } |
|||
|
|||
public string? Phone { get; set; } |
|||
|
|||
public string? Fax { get; set; } |
|||
|
|||
public string? PostId { get; set; } |
|||
|
|||
public string? Contacts { get; set; } |
|||
|
|||
public string? Currency { get; set; } |
|||
|
|||
public bool IsActive { get; set; } |
|||
|
|||
public string Type { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,43 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataCustomerAddress |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string CustomerCode { get; set; } = null!; |
|||
|
|||
public string? Address { get; set; } |
|||
|
|||
public string? Contact { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
|
|||
public string? City { get; set; } |
|||
|
|||
public string LocationCode { get; set; } = null!; |
|||
|
|||
public string? Desc { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,41 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataCustomerItem |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string CustomerCode { get; set; } = null!; |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string CustomerItemCode { get; set; } = null!; |
|||
|
|||
public string? Version { get; set; } |
|||
|
|||
public string? CustomerPackUom { get; set; } |
|||
|
|||
public decimal CustomerPackQty { get; set; } |
|||
|
|||
public DateTime? BeginTime { get; set; } |
|||
|
|||
public DateTime? EndTime { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,33 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataDict |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public virtual ICollection<BasedataDictItem> BasedataDictItems { get; set; } = new List<BasedataDictItem>(); |
|||
} |
@ -0,0 +1,35 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataDictItem |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid MasterId { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Value { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public bool Enabled { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public Guid? TenantId { get; set; } |
|||
|
|||
public DateTime CreationTime { get; set; } |
|||
|
|||
public Guid? CreatorId { get; set; } |
|||
|
|||
public DateTime? LastModificationTime { get; set; } |
|||
|
|||
public Guid? LastModifierId { get; set; } |
|||
|
|||
public virtual BasedataDict Master { get; set; } = null!; |
|||
} |
@ -0,0 +1,35 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataDock |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string? WarehouseCode { get; set; } |
|||
|
|||
public string? DefaultLocationCode { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,41 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataDocumentSetting |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string? TransactionType { get; set; } |
|||
|
|||
public string? NumberPrefix { get; set; } |
|||
|
|||
public string? NumberFormat { get; set; } |
|||
|
|||
public int NumberSerialLength { get; set; } |
|||
|
|||
public string? NumberSeparator { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,35 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataErpLocation |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string? Type { get; set; } |
|||
|
|||
public string WarehouseCode { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,41 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataInterfaceCalendar |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string Name { get; set; } = null!; |
|||
|
|||
public string Year { get; set; } = null!; |
|||
|
|||
public string Month { get; set; } = null!; |
|||
|
|||
public DateTime BeginTime { get; set; } |
|||
|
|||
public DateTime EndTime { get; set; } |
|||
|
|||
public DateTime ConvertToTime { get; set; } |
|||
|
|||
public string? Description { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,75 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataItemBasic |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Desc1 { get; set; } |
|||
|
|||
public string? Desc2 { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
|
|||
public bool CanMake { get; set; } |
|||
|
|||
public bool CanBuy { get; set; } |
|||
|
|||
public bool CanOutsourcing { get; set; } |
|||
|
|||
public bool IsRecycled { get; set; } |
|||
|
|||
public string? Type { get; set; } |
|||
|
|||
public string? Category { get; set; } |
|||
|
|||
public string? Group { get; set; } |
|||
|
|||
public string? Color { get; set; } |
|||
|
|||
public string? Configuration { get; set; } |
|||
|
|||
public string? BasicUom { get; set; } |
|||
|
|||
public decimal StdPackQty { get; set; } |
|||
|
|||
public string AbcClass { get; set; } = null!; |
|||
|
|||
public string? Project { get; set; } |
|||
|
|||
public string? Version { get; set; } |
|||
|
|||
public string? Eco { get; set; } |
|||
|
|||
public int Validity { get; set; } |
|||
|
|||
public string ValidityUnit { get; set; } = null!; |
|||
|
|||
public string ManageType { get; set; } = null!; |
|||
|
|||
public string? Elevel { get; set; } |
|||
|
|||
public bool IsPhantom { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,31 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataItemCategory |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string CategoryCode { get; set; } = null!; |
|||
|
|||
public string Value { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,37 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataItemGuideBook |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Desc1 { get; set; } |
|||
|
|||
public string? Desc2 { get; set; } |
|||
|
|||
public string? Step { get; set; } |
|||
|
|||
public string? PictureBlobName { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,37 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataItemPack |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string PackCode { get; set; } = null!; |
|||
|
|||
public string? PackName { get; set; } |
|||
|
|||
public string? PackType { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string? BasicUom { get; set; } |
|||
|
|||
public decimal Qty { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,35 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataItemQuality |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string SupplierCode { get; set; } = null!; |
|||
|
|||
public string Status { get; set; } = null!; |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string InspectType { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,45 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataItemSafetyStock |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
|
|||
public string StoreRelationType { get; set; } = null!; |
|||
|
|||
public string? StoreValue { get; set; } |
|||
|
|||
public decimal MaxStock { get; set; } |
|||
|
|||
public decimal MinStock { get; set; } |
|||
|
|||
public decimal SafetyStock { get; set; } |
|||
|
|||
public decimal FeedLine { get; set; } |
|||
|
|||
public decimal FeedQty { get; set; } |
|||
|
|||
public string? FeedUm { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,49 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataItemStoreRelation |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
|
|||
public string StoreRelationType { get; set; } = null!; |
|||
|
|||
public string? StoreValue { get; set; } |
|||
|
|||
public bool Enabled { get; set; } |
|||
|
|||
public string? StoreUm { get; set; } |
|||
|
|||
public decimal UmQty { get; set; } |
|||
|
|||
public string? AltUm { get; set; } |
|||
|
|||
public decimal AltUmQty { get; set; } |
|||
|
|||
public string PramaryUm { get; set; } = null!; |
|||
|
|||
public bool IsFixed { get; set; } |
|||
|
|||
public int MultiLoc { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,87 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataLocation |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string Type { get; set; } = null!; |
|||
|
|||
public string ErpLocationCode { get; set; } = null!; |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
|
|||
public string AreaCode { get; set; } = null!; |
|||
|
|||
public string LocationGroupCode { get; set; } = null!; |
|||
|
|||
public string WorkGroupCode { get; set; } = null!; |
|||
|
|||
public string? ShelfCode { get; set; } |
|||
|
|||
public int RowCode { get; set; } |
|||
|
|||
public int ColumnCode { get; set; } |
|||
|
|||
public string DefaultInventoryStatus { get; set; } = null!; |
|||
|
|||
public int PickPriority { get; set; } |
|||
|
|||
public int PickOrder { get; set; } |
|||
|
|||
public bool? EnableMixItem { get; set; } |
|||
|
|||
public bool? EnableMixLot { get; set; } |
|||
|
|||
public bool? EnableMixStatus { get; set; } |
|||
|
|||
public bool? EnableNegative { get; set; } |
|||
|
|||
public bool? EnableKeepZero { get; set; } |
|||
|
|||
public bool? EnableOpportunityCount { get; set; } |
|||
|
|||
public bool? EnablePick { get; set; } |
|||
|
|||
public bool? EnableOverPick { get; set; } |
|||
|
|||
public bool? EnableWholeStore { get; set; } |
|||
|
|||
public bool? EnableBreakStore { get; set; } |
|||
|
|||
public bool? EnableShip { get; set; } |
|||
|
|||
public bool? EnableReceive { get; set; } |
|||
|
|||
public bool? EnableReturnToSupplier { get; set; } |
|||
|
|||
public bool? EnableReturnFromCustomer { get; set; } |
|||
|
|||
public bool? EnableSplitBox { get; set; } |
|||
|
|||
public bool? EnableSplitPallet { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,75 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataLocationGroup |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string WarehouseCode { get; set; } = null!; |
|||
|
|||
public string AreaCode { get; set; } = null!; |
|||
|
|||
public string GroupType { get; set; } = null!; |
|||
|
|||
public string DefaultInventoryStatus { get; set; } = null!; |
|||
|
|||
public int PickPriority { get; set; } |
|||
|
|||
public string? OverflowLocationGroup { get; set; } |
|||
|
|||
public bool? EnableMixItem { get; set; } |
|||
|
|||
public bool? EnableMixLot { get; set; } |
|||
|
|||
public bool? EnableMixStatus { get; set; } |
|||
|
|||
public bool? EnableNegative { get; set; } |
|||
|
|||
public bool? EnableKeepZero { get; set; } |
|||
|
|||
public bool? EnableOpportunityCount { get; set; } |
|||
|
|||
public bool? EnablePick { get; set; } |
|||
|
|||
public bool? EnableOverPick { get; set; } |
|||
|
|||
public bool? EnableWholeStore { get; set; } |
|||
|
|||
public bool? EnableBreakStore { get; set; } |
|||
|
|||
public bool? EnableShip { get; set; } |
|||
|
|||
public bool? EnableReceive { get; set; } |
|||
|
|||
public bool? EnableReturnToSupplier { get; set; } |
|||
|
|||
public bool? EnableReturnFromCustomer { get; set; } |
|||
|
|||
public bool? EnableSplitBox { get; set; } |
|||
|
|||
public bool? EnableSplitPallet { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,37 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataMachine |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid ProdLineId { get; set; } |
|||
|
|||
public Guid WorkStationId { get; set; } |
|||
|
|||
public string Name { get; set; } = null!; |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string Type { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,41 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataProductionLine |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string Type { get; set; } = null!; |
|||
|
|||
public string? WorkshopCode { get; set; } |
|||
|
|||
public string? RawLocationCode { get; set; } |
|||
|
|||
public string? ProductLocationCode { get; set; } |
|||
|
|||
public string? RawLocationGroupCode { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,29 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataProductionLineItem |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string ProdLineCode { get; set; } = null!; |
|||
|
|||
public string ItemCode { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,37 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataProject |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string? CustomerCode { get; set; } |
|||
|
|||
public DateTime? BeginTime { get; set; } |
|||
|
|||
public DateTime? EndTime { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,35 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataPurchasePriceSheet |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid SupplierId { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public Guid CurrencyId { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,35 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataSalePriceSheet |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public Guid CustomerId { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public Guid CurrencyId { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,37 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataShift |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public DateTime? BeginTime { get; set; } |
|||
|
|||
public DateTime? EndTime { get; set; } |
|||
|
|||
public bool EndAtNextDay { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,35 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataStdCostPriceSheet |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string Name { get; set; } = null!; |
|||
|
|||
public Guid SupplierId { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public Guid CurrencyId { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,55 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataSupplier |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string Name { get; set; } = null!; |
|||
|
|||
public string? ShortName { get; set; } |
|||
|
|||
public string? Address { get; set; } |
|||
|
|||
public string? Country { get; set; } |
|||
|
|||
public string? City { get; set; } |
|||
|
|||
public string? Phone { get; set; } |
|||
|
|||
public string? Fax { get; set; } |
|||
|
|||
public string? PostId { get; set; } |
|||
|
|||
public string? Contacts { get; set; } |
|||
|
|||
public string? Bank { get; set; } |
|||
|
|||
public string? Currency { get; set; } |
|||
|
|||
public decimal TaxRate { get; set; } |
|||
|
|||
public bool? IsActive { get; set; } |
|||
|
|||
public string Type { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,43 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataSupplierItem |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string SupplierCode { get; set; } = null!; |
|||
|
|||
public string? SupplierSimpleName { get; set; } |
|||
|
|||
public string ItemCode { get; set; } = null!; |
|||
|
|||
public string? ItemName { get; set; } |
|||
|
|||
public string SupplierItemCode { get; set; } = null!; |
|||
|
|||
public string? Version { get; set; } |
|||
|
|||
public string? SupplierPackUom { get; set; } |
|||
|
|||
public decimal SupplierPackQty { get; set; } |
|||
|
|||
public decimal QtyPerPallet { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,33 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataSupplierTimeWindow |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string SupplierCode { get; set; } = null!; |
|||
|
|||
public string SupplierName { get; set; } = null!; |
|||
|
|||
public string TimeSlot { get; set; } = null!; |
|||
|
|||
public string Week { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,33 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataTeam |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string? Members { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,59 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataTransactionType |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string TransType { get; set; } = null!; |
|||
|
|||
public string TransSubType { get; set; } = null!; |
|||
|
|||
public string Description { get; set; } = null!; |
|||
|
|||
public string? InLocationTypes { get; set; } |
|||
|
|||
public string? OutLocationTypes { get; set; } |
|||
|
|||
public string? InLocationAreas { get; set; } |
|||
|
|||
public string? OutLocationAreas { get; set; } |
|||
|
|||
public string? ItemStatuses { get; set; } |
|||
|
|||
public string? ItemTypes { get; set; } |
|||
|
|||
public string? InInventoryStatuses { get; set; } |
|||
|
|||
public string? OutInventoryStatuses { get; set; } |
|||
|
|||
public bool AutoSubmitRequest { get; set; } |
|||
|
|||
public bool AutoAgreeRequest { get; set; } |
|||
|
|||
public bool AutoHandleRequest { get; set; } |
|||
|
|||
public bool AutoCompleteJob { get; set; } |
|||
|
|||
public bool DirectCreateNote { get; set; } |
|||
|
|||
public bool Enabled { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,33 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataUom |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string Type { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,31 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataWarehouse |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,33 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataWorkGroup |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string? Name { get; set; } |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string WarehouseCode { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,31 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataWorkShop |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string Name { get; set; } = null!; |
|||
|
|||
public string? Description { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,39 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class BasedataWorkStation |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string Code { get; set; } = null!; |
|||
|
|||
public string Name { get; set; } = null!; |
|||
|
|||
public string? Description { get; set; } |
|||
|
|||
public string ProductionLineCode { get; set; } = null!; |
|||
|
|||
public string? RawLocationCode { get; set; } |
|||
|
|||
public string? ProductLocationCode { get; set; } |
|||
|
|||
public string? Type { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,11 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class EfdbContext |
|||
{ |
|||
public string Id { get; set; } = null!; |
|||
|
|||
public string Hash { get; set; } = null!; |
|||
} |
@ -0,0 +1,43 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class FileStorageDataExportTask |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string? ExportFileBlobName { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public string Function { get; set; } = null!; |
|||
|
|||
public string Route { get; set; } = null!; |
|||
|
|||
public string? RequestParam { get; set; } |
|||
|
|||
public string? ReturnResult { get; set; } |
|||
|
|||
public string? Worker { get; set; } |
|||
|
|||
public DateTime? BeginTime { get; set; } |
|||
|
|||
public DateTime? EndTime { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
} |
@ -0,0 +1,47 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class FileStorageDataImportTask |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string ImportFileBlobName { get; set; } = null!; |
|||
|
|||
public string? ImportReportBlobName { get; set; } |
|||
|
|||
public int ImportStatus { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
|
|||
public string Function { get; set; } = null!; |
|||
|
|||
public string Route { get; set; } = null!; |
|||
|
|||
public string? RequestParam { get; set; } |
|||
|
|||
public string? ReturnResult { get; set; } |
|||
|
|||
public string? Worker { get; set; } |
|||
|
|||
public DateTime? BeginTime { get; set; } |
|||
|
|||
public DateTime? EndTime { get; set; } |
|||
|
|||
public string Status { get; set; } = null!; |
|||
} |
@ -0,0 +1,31 @@ |
|||
using System; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace WinIn.FasterZ.Wms.Z_Business; |
|||
|
|||
public partial class FileStorageFile |
|||
{ |
|||
public Guid Id { get; set; } |
|||
|
|||
public string FileName { get; set; } = null!; |
|||
|
|||
public string BlobName { get; set; } = null!; |
|||
|
|||
public long ByteSize { 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 Guid? TenantId { get; set; } |
|||
|
|||
public string? Remark { get; set; } |
|||
} |
@ -0,0 +1,47 @@ |
|||
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>(); |
|||
} |
@ -0,0 +1,13 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,15 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,13 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,19 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,45 @@ |
|||
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>(); |
|||
} |
@ -0,0 +1,13 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,15 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,123 @@ |
|||
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>(); |
|||
} |
@ -0,0 +1,15 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,13 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,13 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,13 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,13 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,15 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,13 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,13 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,19 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,33 @@ |
|||
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; } |
|||
} |
@ -0,0 +1,45 @@ |
|||
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>(); |
|||
} |
@ -0,0 +1,13 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,15 @@ |
|||
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!; |
|||
} |
@ -0,0 +1,33 @@ |
|||
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; } |
|||
} |
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue