├── .gitignore ├── Dockerfile ├── LICENSE.txt ├── README.md ├── ZKWeb.MVVMDemo.sln ├── appveyor.yml ├── docs ├── README.md ├── cn │ ├── AdminPanel.md │ ├── ApplicationService.md │ ├── BackendStruction.md │ ├── CRUD.md │ ├── CreateEntity.md │ ├── CreatePlugin.md │ ├── DockerSupport.md │ ├── Locale.md │ ├── MultiTenant.md │ ├── NgAdminLogin.md │ ├── NgAutoGeneratedScript.md │ ├── NgCheckPremission.md │ ├── NgCreateModule.md │ ├── NgFrontendStruction.md │ ├── Organization.md │ ├── README.md │ ├── ScheduledTask.md │ ├── TODO.md │ ├── UbuntuSupport.md │ ├── img │ │ ├── about_website.jpg │ │ ├── admin_login.jpg │ │ ├── admin_panel.jpg │ │ ├── backend_plugin_struction.jpg │ │ ├── backend_struction.jpg │ │ ├── docker_running.jpg │ │ ├── frontend_dist.jpg │ │ ├── frontend_struction.jpg │ │ ├── login_diagram.jpg │ │ ├── login_request_1.jpg │ │ ├── login_request_2.jpg │ │ ├── login_request_3.jpg │ │ ├── plugin_application_source.jpg │ │ ├── plugin_domain_source.jpg │ │ ├── plugin_list.jpg │ │ ├── plugin_source.jpg │ │ ├── rename_script.jpg │ │ ├── role_manage.jpg │ │ ├── scheduled_tasks.jpg │ │ ├── scheduled_tasks_log.jpg │ │ ├── swagger_api_description.jpg │ │ ├── swagger_api_list.jpg │ │ ├── swagger_api_test.jpg │ │ ├── swagger_login.jpg │ │ ├── switch_language.jpg │ │ ├── tenant_edit.jpg │ │ ├── tenant_manage.jpg │ │ └── user_manage_edit.jpg │ └── ngRequestApi.md └── preview.jpg ├── project_rename.sh ├── publish.bat ├── publish_ubuntu.sh └── src ├── ZKWeb.MVVMDemo.AspNetCore ├── App_Data │ ├── .gitignore │ └── config.json ├── Controllers │ └── MvcController.cs ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── Swagger │ ├── ZKWebSwaggerApiProvider.cs │ ├── ZKWebSwaggerOperationFilter.cs │ └── ZKWebSwaggerSchemaFilter.cs ├── ZKWeb.MVVMDemo.AspNetCore.csproj ├── app.config └── web.config ├── ZKWeb.MVVMDemo.Console ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── ZKWeb.MVVMDemo.Console.csproj └── ZKWeb.MVVMPlugins ├── MVVM.Angular.Support ├── plugin.json └── src │ ├── Application │ ├── AngularRouter.cs │ └── AngularScriptGenerator.cs │ ├── Components │ └── ScriptGenerator │ │ ├── DtoScriptGenerator.cs │ │ ├── ModuleScriptGenerator.cs │ │ ├── PrivilegeScriptGenerator.cs │ │ ├── ScriptPathConfig.cs │ │ ├── ServiceScriptGenerator.cs │ │ └── TranslationScriptGenerator.cs │ └── Plugin.cs ├── MVVM.Angular.Website ├── plugin.json └── static │ ├── .gitignore │ ├── angular.json │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── index.html │ ├── main.ts │ ├── modules │ │ ├── admin_base_module │ │ │ ├── admin_base.module.ts │ │ │ ├── components │ │ │ │ └── admin-container.component.ts │ │ │ ├── navigation │ │ │ │ ├── admin-nav-menu.ts │ │ │ │ ├── nav-menu-group.ts │ │ │ │ └── nav-menu-item.ts │ │ │ ├── services │ │ │ │ └── admin-toast-service.ts │ │ │ ├── styles │ │ │ │ └── admin-container.scss │ │ │ └── views │ │ │ │ └── admin-container.html │ │ ├── admin_example_datas_module │ │ │ ├── admin_example_datas.module.ts │ │ │ ├── components │ │ │ │ └── admin-example-data-list.component.ts │ │ │ └── views │ │ │ │ └── admin-example-data-list.html │ │ ├── admin_module │ │ │ ├── admin.module.ts │ │ │ ├── components │ │ │ │ ├── admin-about-me.component.ts │ │ │ │ ├── admin-about-website.component.ts │ │ │ │ ├── admin-index.component.ts │ │ │ │ └── admin-login.component.ts │ │ │ ├── styles │ │ │ │ └── admin-login.scss │ │ │ └── views │ │ │ │ ├── admin-about-me.html │ │ │ │ ├── admin-about-website.html │ │ │ │ ├── admin-index.html │ │ │ │ └── admin-login.html │ │ ├── admin_roles_module │ │ │ ├── admin_roles.module.ts │ │ │ ├── components │ │ │ │ └── admin-role-list.component.ts │ │ │ └── views │ │ │ │ └── admin-role-list.html │ │ ├── admin_scheduled_tasks_module │ │ │ ├── admin_scheduled_tasks.module.ts │ │ │ ├── components │ │ │ │ ├── admin-scheduled-task-list.component.ts │ │ │ │ └── admin-scheduled-task-log-list.component.ts │ │ │ └── views │ │ │ │ ├── admin-scheduled-task-list.html │ │ │ │ └── admin-scheduled-task-log-list.html │ │ ├── admin_settings_module │ │ │ ├── admin_settings.module.ts │ │ │ ├── components │ │ │ │ └── admin-website-settings.component.ts │ │ │ └── views │ │ │ │ └── admin-website-settings.html │ │ ├── admin_tenants_module │ │ │ ├── admin_tenants.module.ts │ │ │ ├── components │ │ │ │ └── admin-tenant-list.component.ts │ │ │ └── views │ │ │ │ └── admin-tenant-list.html │ │ ├── admin_users_module │ │ │ ├── admin_users.module.ts │ │ │ ├── components │ │ │ │ └── admin-user-list.component.ts │ │ │ └── views │ │ │ │ └── admin-user-list.html │ │ ├── app_module │ │ │ ├── app.module.ts │ │ │ ├── components │ │ │ │ ├── app.component.ts │ │ │ │ └── page_not_found.component.ts │ │ │ ├── styles │ │ │ │ └── page_not_found.scss │ │ │ └── views │ │ │ │ ├── app.html │ │ │ │ └── page_not_found.html │ │ ├── auth_module │ │ │ ├── auth.module.ts │ │ │ ├── auth │ │ │ │ ├── auth-guard.ts │ │ │ │ └── auth-requirement.ts │ │ │ └── services │ │ │ │ ├── app-privilege-service.ts │ │ │ │ └── app-session-service.ts │ │ ├── base_module │ │ │ ├── base.module.ts │ │ │ ├── components │ │ │ │ ├── crud-base.component.ts │ │ │ │ ├── crud-with-dialog-base.component.ts │ │ │ │ ├── form-captcha.component.ts │ │ │ │ ├── form-dropdown.component.ts │ │ │ │ ├── form-field-base.component.ts │ │ │ │ ├── form-grid.component.ts │ │ │ │ ├── form-hidden.component.ts │ │ │ │ ├── form-multiselect.component.ts │ │ │ │ ├── form-password.component.ts │ │ │ │ ├── form-submit-button.component.ts │ │ │ │ ├── form-text.component.ts │ │ │ │ ├── form-textarea.component.ts │ │ │ │ ├── form-upload.component.ts │ │ │ │ └── form-validation-messages.component.ts │ │ │ ├── pipes │ │ │ │ └── trans-pipe.ts │ │ │ ├── services │ │ │ │ ├── app-api-service.ts │ │ │ │ ├── app-config-service.ts │ │ │ │ └── app-translation-service.ts │ │ │ └── views │ │ │ │ ├── form-captcha.html │ │ │ │ ├── form-dropdown.html │ │ │ │ ├── form-grid.html │ │ │ │ ├── form-hidden.html │ │ │ │ ├── form-multiselect.html │ │ │ │ ├── form-password.html │ │ │ │ ├── form-submit-button.html │ │ │ │ ├── form-text.html │ │ │ │ ├── form-textarea.html │ │ │ │ ├── form-upload.html │ │ │ │ └── form-validation-messages.html │ │ └── generated_module │ │ │ ├── dtos │ │ │ ├── action-response-dto.ts │ │ │ ├── example-data-input-dto.ts │ │ │ ├── grid-search-column-filter-match-mode.ts │ │ │ ├── grid-search-column-filter.ts │ │ │ ├── grid-search-request-dto.ts │ │ │ ├── grid-search-response-dto.ts │ │ │ ├── ilist_role-output-dto.ts │ │ │ ├── ilist_user-type-output-dto.ts │ │ │ ├── plugin-info-output-dto.ts │ │ │ ├── role-input-dto.ts │ │ │ ├── role-output-dto.ts │ │ │ ├── session-info-dto.ts │ │ │ ├── tenant-input-dto.ts │ │ │ ├── user-change-password-input-dto.ts │ │ │ ├── user-input-dto.ts │ │ │ ├── user-login-request-dto.ts │ │ │ ├── user-output-dto.ts │ │ │ ├── user-type-output-dto.ts │ │ │ ├── user-upload-avatar-input-dto.ts │ │ │ ├── website-info-output-dto.ts │ │ │ └── website-settings-dto.ts │ │ │ ├── generated.module.ts │ │ │ ├── privileges │ │ │ ├── privileges.ts │ │ │ └── user-types.ts │ │ │ ├── services │ │ │ ├── captcha-service.ts │ │ │ ├── example-data-manage-service.ts │ │ │ ├── role-manage-service.ts │ │ │ ├── session-service.ts │ │ │ ├── tenant-manage-service.ts │ │ │ ├── user-login-service.ts │ │ │ ├── user-manage-service.ts │ │ │ ├── user-profile-service.ts │ │ │ └── website-manage-service.ts │ │ │ └── translations │ │ │ ├── en-us.ts │ │ │ ├── index.ts │ │ │ └── zh-cn.ts │ ├── polyfills.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ ├── tslint.json │ ├── vendor.ts │ └── vendor │ │ ├── fonts │ │ └── font-awesome │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── images │ │ ├── default-avatar.jpg │ │ ├── favicon.ico │ │ └── logo.png │ │ └── styles │ │ ├── font-awesome │ │ └── font-awesome.css │ │ ├── preloader │ │ └── preloader.css │ │ └── primeng │ │ ├── images │ │ ├── color.png │ │ ├── hue.png │ │ ├── line.gif │ │ ├── loading.gif │ │ └── password-meter.png │ │ ├── primeng.min.css │ │ ├── site.css │ │ └── theme.css │ ├── tsconfig.json │ └── tslint.json ├── MVVM.Common.ApiExplorer ├── plugin.json ├── src │ ├── Components │ │ └── Swagger │ │ │ └── SwaggerApiProvider.cs │ └── Controllers │ │ └── SwaggerResourcesController.cs └── static │ └── swagger.js │ └── swagger-site.js ├── MVVM.Common.Base ├── plugin.json └── src │ ├── Application │ ├── Attributes │ │ ├── CheckFileAttribute.cs │ │ └── NoParameterValidationAttribute.cs │ ├── Dtos │ │ ├── ActionResponseDto.cs │ │ ├── GridSearchColumnFilter.cs │ │ ├── GridSearchColumnFilterMatchMode.cs │ │ ├── GridSearchRequestDto.cs │ │ ├── GridSearchResponseDto.cs │ │ ├── IDto.cs │ │ ├── IInputDto.cs │ │ └── IOutputDto.cs │ ├── Extensions │ │ ├── IHttpContextExtensions.cs │ │ └── IInputDtoExtensions.cs │ ├── Mappers │ │ └── BaseMapperProfile.cs │ └── Services │ │ ├── Bases │ │ └── ApplicationServiceBase.cs │ │ ├── Interfaces │ │ └── IApplicationService.cs │ │ └── Structs │ │ ├── ApplicationServiceApiMethodInfo.cs │ │ └── ApplicationServiceApiParameterInfo.cs │ ├── Components │ ├── ActionFilters │ │ └── UnitOfWorkAttribute.cs │ ├── ActionParameterProviders │ │ └── ValidatedActionParameterProvider.cs │ ├── CORSExposeHeaders │ │ └── Interfaces │ │ │ └── ICORSExposeHeader.cs │ ├── DatabaseInitializeHandler │ │ └── DatabaseInitializeHandler.cs │ ├── Exceptions │ │ ├── BadRequestException.cs │ │ ├── ForbiddenException.cs │ │ └── NotFoundException.cs │ ├── GridSearchResponseBuilder │ │ └── GridSearchResponseBuilder.cs │ ├── JsonConverters │ │ └── NullToDefaultGuidConverter.cs │ ├── Languages │ │ ├── Chinese.cs │ │ └── English.cs │ ├── RequestHandlers │ │ ├── CorsRequestHandler.cs │ │ └── LocaleRequestHandler.cs │ ├── Translates │ │ ├── Bases │ │ │ └── DictionaryTranslationProviderBase.cs │ │ └── zh_CN.cs │ └── ValidationMessageProviders │ │ ├── Interfaces │ │ └── IValidationMessageProvider.cs │ │ ├── RegularExpressionMessageProvider.cs │ │ ├── RequiredMessageProvider.cs │ │ └── StringLengthMessageProvider.cs │ ├── Domain │ ├── Entities │ │ ├── Bases │ │ │ └── ManyToManyEntityBase.cs │ │ ├── Interfaces │ │ │ ├── IHaveCreateTime.cs │ │ │ ├── IHaveDeleted.cs │ │ │ └── IHaveUpdateTime.cs │ │ └── TypeTraits │ │ │ ├── CreateTimeTypeTrait.cs │ │ │ ├── DeletedTypeTrait.cs │ │ │ └── UpdateTimeTypeTrait.cs │ ├── Filters │ │ ├── CreateTimeFilter.cs │ │ ├── DeletedFilter.cs │ │ ├── GuidEntityFilter.cs │ │ ├── Interfaces │ │ │ ├── IEntityOperationFilter.cs │ │ │ └── IEntityQueryFilter.cs │ │ └── UpdateTimeFilter.cs │ ├── Repositories │ │ ├── Bases │ │ │ ├── ManyToManyRepositoryBase.cs │ │ │ └── RepositoryBase.cs │ │ └── Interfaces │ │ │ └── IRepository.cs │ ├── Services │ │ ├── Bases │ │ │ └── DomainServiceBase.cs │ │ └── Interfaces │ │ │ └── IDomainService.cs │ └── Uow │ │ ├── Extensions │ │ └── IUnitOfWorkExtensions.cs │ │ ├── Interfaces │ │ └── IUnitOfWork.cs │ │ └── UnitOfWork.cs │ └── Plugin.cs ├── MVVM.Common.Captcha ├── plugin.json └── src │ ├── Application │ └── Services │ │ └── CaptchaService.cs │ └── Domain │ └── Services │ └── CaptchaManager.cs ├── MVVM.Common.MultiTenant ├── plugin.json └── src │ ├── Application │ ├── Dtos │ │ ├── TenantInputDto.cs │ │ └── TenantOutputDto.cs │ └── Mappings │ │ └── MultiTenantMapperProfile.cs │ ├── Components │ └── TenantProviders │ │ └── ITenantProvider.cs │ ├── Domain │ ├── Entities │ │ ├── Interfaces │ │ │ └── IHaveOwnerTenant.cs │ │ ├── Tenant.cs │ │ └── TypeTraits │ │ │ └── OwnerTenantTypeTrait.cs │ ├── Filters │ │ └── OwnerTenantFilter.cs │ ├── Repository │ │ └── TenantRepository.cs │ └── Services │ │ └── TenantManager.cs │ └── Plugin.cs ├── MVVM.Common.Organization ├── plugin.json ├── src │ ├── Application │ │ ├── Dtos │ │ │ ├── PluginInfoOutputDto.cs │ │ │ ├── RoleInputDto.cs │ │ │ ├── RoleOutputDto.cs │ │ │ ├── SessionInfoDto.cs │ │ │ ├── UserChangePasswordInputDto.cs │ │ │ ├── UserInputDto.cs │ │ │ ├── UserLoginRequestDto.cs │ │ │ ├── UserOutputDto.cs │ │ │ ├── UserTypeOutputDto.cs │ │ │ ├── UserUploadAvatarInputDto.cs │ │ │ ├── WebsiteInfoOutputDto.cs │ │ │ └── WebsiteSettingsDto.cs │ │ ├── Mappers │ │ │ └── OrganizationMapperProfile.cs │ │ └── Services │ │ │ ├── RoleManageService.cs │ │ │ ├── SessionService.cs │ │ │ ├── TenantManageService.cs │ │ │ ├── UserLoginServiec.cs │ │ │ ├── UserManageService.cs │ │ │ ├── UserProfileService.cs │ │ │ └── WebsiteManageService.cs │ ├── Components │ │ ├── ActionFilters │ │ │ └── CheckPrivilegeAttribute.cs │ │ ├── ExtraConfigKeys │ │ │ └── OrganizationExtraConfigKeys.cs │ │ ├── GenericConfigs │ │ │ ├── Attributes │ │ │ │ └── GenericConfigAttribute.cs │ │ │ └── WebsiteSettings.cs │ │ ├── PrivilegeProviders │ │ │ ├── DefaultPrivilegeProvider.cs │ │ │ └── Interfaces │ │ │ │ └── IPrivilegesProvider.cs │ │ ├── PrivilegeTranslators │ │ │ ├── DefaultPrivilegeTranslator.cs │ │ │ └── Interfaces │ │ │ │ └── IPrivilegeTranslator.cs │ │ ├── Translates │ │ │ └── zh_CN.cs │ │ └── UserLoginHandlers │ │ │ └── Interfaces │ │ │ └── IUserLoginHandler.cs │ ├── Domain │ │ ├── Entities │ │ │ ├── GenericConfig.cs │ │ │ ├── Interfaces │ │ │ │ ├── IAmAdmin.cs │ │ │ │ ├── IAmAnonymouseUser.cs │ │ │ │ ├── IAmSuperAdmin.cs │ │ │ │ ├── IAmUser.cs │ │ │ │ ├── ICanUseAdminPanel.cs │ │ │ │ ├── IHaveOwner.cs │ │ │ │ └── IUserType.cs │ │ │ ├── Role.cs │ │ │ ├── TypeTraits │ │ │ │ └── OwnerTypeTrait.cs │ │ │ ├── User.cs │ │ │ ├── UserToRole.cs │ │ │ └── UserTypes │ │ │ │ ├── AdminUserType.cs │ │ │ │ ├── AnonymouseUserType.cs │ │ │ │ ├── NormalUserType.cs │ │ │ │ └── SuperAdminUserType.cs │ │ ├── Extensions │ │ │ ├── SessionExtensions.cs │ │ │ └── UserExtensions.cs │ │ ├── Filters │ │ │ ├── OwnerFilter.cs │ │ │ └── PreventModifySuperAdminFilter.cs │ │ ├── Repositories │ │ │ ├── GenericConfigRepository.cs │ │ │ ├── RoleRepository.cs │ │ │ ├── UserRepository.cs │ │ │ └── UserToRoleRepository.cs │ │ ├── Services │ │ │ ├── AdminManager.cs │ │ │ ├── GenericConfigManager.cs │ │ │ ├── PrivilegeManager.cs │ │ │ ├── RoleManager.cs │ │ │ └── UserManager.cs │ │ └── Structs │ │ │ └── AuthRequirement.cs │ └── Plugin.cs └── static │ └── mvvm.common.organization.images │ └── default-avatar.jpg ├── MVVM.Common.SessionState ├── plugin.json └── src │ ├── Components │ ├── CacheIsolationPolicies │ │ ├── CacheIsolateByIdent.cs │ │ └── CacheIsolateByTenant.cs │ ├── ScheduledTasks │ │ └── SessionCleaner.cs │ ├── SessionIdStore │ │ ├── Interfaces │ │ │ └── ISessionIdStore.cs │ │ └── SessionIdHeaderStore.cs │ └── TenantProviders │ │ └── SessionTenantProvider.cs │ └── Domain │ ├── Entities │ └── Session.cs │ ├── Extensions │ └── SessionExtensions.cs │ ├── Repositories │ └── SessionRepository.cs │ └── Services │ └── SessionManager.cs ├── MVVM.Common.TaskScheduler ├── plugin.json └── src │ ├── Application │ ├── Dtos │ │ ├── ScheduledTaskLogOutputDto.cs │ │ └── ScheduledTaskOutputDto.cs │ └── Mappers │ │ └── TaskSchedulerMapperProfile.cs │ ├── Components │ └── ScheduledTasks │ │ ├── DefaultScheduledTaskProvider.cs │ │ ├── Interfaces │ │ ├── IScheduledTask.cs │ │ └── IScheduledTaskProvider.cs │ │ └── LogCleaner.cs │ ├── Domain │ ├── Entities │ │ ├── ScheduledTask.cs │ │ └── ScheduledTaskLog.cs │ ├── Repositories │ │ ├── ScheduledTaskLogRepository.cs │ │ └── ScheduledTaskRepository.cs │ └── Services │ │ ├── ScheduledTaskLogManager.cs │ │ └── ScheduledTaskManager.cs │ └── Plugin.cs ├── MVVM.Example.CrudExample ├── plugin.json └── src │ ├── Application │ ├── Dtos │ │ ├── ExampleDataInputDto.cs │ │ └── ExampleDataOutputDto.cs │ ├── Mappers │ │ └── CrudExampleMapperProfile.cs │ └── Services │ │ └── ExampleDataManageService.cs │ ├── Components │ └── Translates │ │ └── zh_CN.cs │ └── Domain │ ├── Entities │ └── ExampleData.cs │ ├── Repositories │ └── ExampleDataRepository.cs │ └── Services │ └── ExampleDataManager.cs ├── Properties └── AssemblyInfo.cs └── ZKWeb.MVVMPlugins.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/README.md -------------------------------------------------------------------------------- /ZKWeb.MVVMDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/ZKWeb.MVVMDemo.sln -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/appveyor.yml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/cn/AdminPanel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/AdminPanel.md -------------------------------------------------------------------------------- /docs/cn/ApplicationService.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/ApplicationService.md -------------------------------------------------------------------------------- /docs/cn/BackendStruction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/BackendStruction.md -------------------------------------------------------------------------------- /docs/cn/CRUD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/CRUD.md -------------------------------------------------------------------------------- /docs/cn/CreateEntity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/CreateEntity.md -------------------------------------------------------------------------------- /docs/cn/CreatePlugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/CreatePlugin.md -------------------------------------------------------------------------------- /docs/cn/DockerSupport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/DockerSupport.md -------------------------------------------------------------------------------- /docs/cn/Locale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/Locale.md -------------------------------------------------------------------------------- /docs/cn/MultiTenant.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/MultiTenant.md -------------------------------------------------------------------------------- /docs/cn/NgAdminLogin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/NgAdminLogin.md -------------------------------------------------------------------------------- /docs/cn/NgAutoGeneratedScript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/NgAutoGeneratedScript.md -------------------------------------------------------------------------------- /docs/cn/NgCheckPremission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/NgCheckPremission.md -------------------------------------------------------------------------------- /docs/cn/NgCreateModule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/NgCreateModule.md -------------------------------------------------------------------------------- /docs/cn/NgFrontendStruction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/NgFrontendStruction.md -------------------------------------------------------------------------------- /docs/cn/Organization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/Organization.md -------------------------------------------------------------------------------- /docs/cn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/README.md -------------------------------------------------------------------------------- /docs/cn/ScheduledTask.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/ScheduledTask.md -------------------------------------------------------------------------------- /docs/cn/TODO.md: -------------------------------------------------------------------------------- 1 | 该文档还在编写中,请耐心等待 2 | -------------------------------------------------------------------------------- /docs/cn/UbuntuSupport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/UbuntuSupport.md -------------------------------------------------------------------------------- /docs/cn/img/about_website.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/about_website.jpg -------------------------------------------------------------------------------- /docs/cn/img/admin_login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/admin_login.jpg -------------------------------------------------------------------------------- /docs/cn/img/admin_panel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/admin_panel.jpg -------------------------------------------------------------------------------- /docs/cn/img/backend_plugin_struction.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/backend_plugin_struction.jpg -------------------------------------------------------------------------------- /docs/cn/img/backend_struction.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/backend_struction.jpg -------------------------------------------------------------------------------- /docs/cn/img/docker_running.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/docker_running.jpg -------------------------------------------------------------------------------- /docs/cn/img/frontend_dist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/frontend_dist.jpg -------------------------------------------------------------------------------- /docs/cn/img/frontend_struction.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/frontend_struction.jpg -------------------------------------------------------------------------------- /docs/cn/img/login_diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/login_diagram.jpg -------------------------------------------------------------------------------- /docs/cn/img/login_request_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/login_request_1.jpg -------------------------------------------------------------------------------- /docs/cn/img/login_request_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/login_request_2.jpg -------------------------------------------------------------------------------- /docs/cn/img/login_request_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/login_request_3.jpg -------------------------------------------------------------------------------- /docs/cn/img/plugin_application_source.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/plugin_application_source.jpg -------------------------------------------------------------------------------- /docs/cn/img/plugin_domain_source.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/plugin_domain_source.jpg -------------------------------------------------------------------------------- /docs/cn/img/plugin_list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/plugin_list.jpg -------------------------------------------------------------------------------- /docs/cn/img/plugin_source.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/plugin_source.jpg -------------------------------------------------------------------------------- /docs/cn/img/rename_script.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/rename_script.jpg -------------------------------------------------------------------------------- /docs/cn/img/role_manage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/role_manage.jpg -------------------------------------------------------------------------------- /docs/cn/img/scheduled_tasks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/scheduled_tasks.jpg -------------------------------------------------------------------------------- /docs/cn/img/scheduled_tasks_log.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/scheduled_tasks_log.jpg -------------------------------------------------------------------------------- /docs/cn/img/swagger_api_description.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/swagger_api_description.jpg -------------------------------------------------------------------------------- /docs/cn/img/swagger_api_list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/swagger_api_list.jpg -------------------------------------------------------------------------------- /docs/cn/img/swagger_api_test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/swagger_api_test.jpg -------------------------------------------------------------------------------- /docs/cn/img/swagger_login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/swagger_login.jpg -------------------------------------------------------------------------------- /docs/cn/img/switch_language.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/switch_language.jpg -------------------------------------------------------------------------------- /docs/cn/img/tenant_edit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/tenant_edit.jpg -------------------------------------------------------------------------------- /docs/cn/img/tenant_manage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/tenant_manage.jpg -------------------------------------------------------------------------------- /docs/cn/img/user_manage_edit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/img/user_manage_edit.jpg -------------------------------------------------------------------------------- /docs/cn/ngRequestApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/cn/ngRequestApi.md -------------------------------------------------------------------------------- /docs/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/docs/preview.jpg -------------------------------------------------------------------------------- /project_rename.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/project_rename.sh -------------------------------------------------------------------------------- /publish.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/publish.bat -------------------------------------------------------------------------------- /publish_ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/publish_ubuntu.sh -------------------------------------------------------------------------------- /src/ZKWeb.MVVMDemo.AspNetCore/App_Data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !config.json 3 | !.gitignore -------------------------------------------------------------------------------- /src/ZKWeb.MVVMDemo.AspNetCore/App_Data/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMDemo.AspNetCore/App_Data/config.json -------------------------------------------------------------------------------- /src/ZKWeb.MVVMDemo.AspNetCore/Controllers/MvcController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMDemo.AspNetCore/Controllers/MvcController.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMDemo.AspNetCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMDemo.AspNetCore/Program.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMDemo.AspNetCore/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMDemo.AspNetCore/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/ZKWeb.MVVMDemo.AspNetCore/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMDemo.AspNetCore/Startup.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMDemo.AspNetCore/Swagger/ZKWebSwaggerApiProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMDemo.AspNetCore/Swagger/ZKWebSwaggerApiProvider.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMDemo.AspNetCore/Swagger/ZKWebSwaggerOperationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMDemo.AspNetCore/Swagger/ZKWebSwaggerOperationFilter.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMDemo.AspNetCore/Swagger/ZKWebSwaggerSchemaFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMDemo.AspNetCore/Swagger/ZKWebSwaggerSchemaFilter.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMDemo.AspNetCore/ZKWeb.MVVMDemo.AspNetCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMDemo.AspNetCore/ZKWeb.MVVMDemo.AspNetCore.csproj -------------------------------------------------------------------------------- /src/ZKWeb.MVVMDemo.AspNetCore/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMDemo.AspNetCore/app.config -------------------------------------------------------------------------------- /src/ZKWeb.MVVMDemo.AspNetCore/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMDemo.AspNetCore/web.config -------------------------------------------------------------------------------- /src/ZKWeb.MVVMDemo.Console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMDemo.Console/Program.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMDemo.Console/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMDemo.Console/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMDemo.Console/ZKWeb.MVVMDemo.Console.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMDemo.Console/ZKWeb.MVVMDemo.Console.csproj -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Support/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Support/plugin.json -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Support/src/Application/AngularRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Support/src/Application/AngularRouter.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Support/src/Application/AngularScriptGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Support/src/Application/AngularScriptGenerator.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Support/src/Components/ScriptGenerator/DtoScriptGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Support/src/Components/ScriptGenerator/DtoScriptGenerator.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Support/src/Components/ScriptGenerator/ModuleScriptGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Support/src/Components/ScriptGenerator/ModuleScriptGenerator.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Support/src/Components/ScriptGenerator/PrivilegeScriptGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Support/src/Components/ScriptGenerator/PrivilegeScriptGenerator.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Support/src/Components/ScriptGenerator/ScriptPathConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Support/src/Components/ScriptGenerator/ScriptPathConfig.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Support/src/Components/ScriptGenerator/ServiceScriptGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Support/src/Components/ScriptGenerator/ServiceScriptGenerator.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Support/src/Components/ScriptGenerator/TranslationScriptGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Support/src/Components/ScriptGenerator/TranslationScriptGenerator.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Support/src/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Support/src/Plugin.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/plugin.json -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/.gitignore -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/angular.json -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/package-lock.json -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/package.json -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/environments/environment.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/index.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/main.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_base_module/admin_base.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_base_module/admin_base.module.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_base_module/components/admin-container.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_base_module/components/admin-container.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_base_module/navigation/admin-nav-menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_base_module/navigation/admin-nav-menu.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_base_module/navigation/nav-menu-group.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_base_module/navigation/nav-menu-group.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_base_module/navigation/nav-menu-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_base_module/navigation/nav-menu-item.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_base_module/services/admin-toast-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_base_module/services/admin-toast-service.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_base_module/styles/admin-container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_base_module/styles/admin-container.scss -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_base_module/views/admin-container.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_base_module/views/admin-container.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_example_datas_module/admin_example_datas.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_example_datas_module/admin_example_datas.module.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_example_datas_module/components/admin-example-data-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_example_datas_module/components/admin-example-data-list.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_example_datas_module/views/admin-example-data-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_example_datas_module/views/admin-example-data-list.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_module/admin.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_module/admin.module.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_module/components/admin-about-me.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_module/components/admin-about-me.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_module/components/admin-about-website.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_module/components/admin-about-website.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_module/components/admin-index.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_module/components/admin-index.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_module/components/admin-login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_module/components/admin-login.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_module/styles/admin-login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_module/styles/admin-login.scss -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_module/views/admin-about-me.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_module/views/admin-about-me.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_module/views/admin-about-website.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_module/views/admin-about-website.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_module/views/admin-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_module/views/admin-index.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_module/views/admin-login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_module/views/admin-login.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_roles_module/admin_roles.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_roles_module/admin_roles.module.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_roles_module/components/admin-role-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_roles_module/components/admin-role-list.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_roles_module/views/admin-role-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_roles_module/views/admin-role-list.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_scheduled_tasks_module/admin_scheduled_tasks.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_scheduled_tasks_module/admin_scheduled_tasks.module.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_scheduled_tasks_module/components/admin-scheduled-task-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_scheduled_tasks_module/components/admin-scheduled-task-list.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_scheduled_tasks_module/components/admin-scheduled-task-log-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_scheduled_tasks_module/components/admin-scheduled-task-log-list.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_scheduled_tasks_module/views/admin-scheduled-task-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_scheduled_tasks_module/views/admin-scheduled-task-list.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_scheduled_tasks_module/views/admin-scheduled-task-log-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_scheduled_tasks_module/views/admin-scheduled-task-log-list.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_settings_module/admin_settings.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_settings_module/admin_settings.module.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_settings_module/components/admin-website-settings.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_settings_module/components/admin-website-settings.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_settings_module/views/admin-website-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_settings_module/views/admin-website-settings.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_tenants_module/admin_tenants.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_tenants_module/admin_tenants.module.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_tenants_module/components/admin-tenant-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_tenants_module/components/admin-tenant-list.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_tenants_module/views/admin-tenant-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_tenants_module/views/admin-tenant-list.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_users_module/admin_users.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_users_module/admin_users.module.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_users_module/components/admin-user-list.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_users_module/components/admin-user-list.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_users_module/views/admin-user-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/admin_users_module/views/admin-user-list.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/app_module/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/app_module/app.module.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/app_module/components/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/app_module/components/app.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/app_module/components/page_not_found.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/app_module/components/page_not_found.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/app_module/styles/page_not_found.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/app_module/styles/page_not_found.scss -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/app_module/views/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/app_module/views/app.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/app_module/views/page_not_found.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/app_module/views/page_not_found.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/auth_module/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/auth_module/auth.module.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/auth_module/auth/auth-guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/auth_module/auth/auth-guard.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/auth_module/auth/auth-requirement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/auth_module/auth/auth-requirement.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/auth_module/services/app-privilege-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/auth_module/services/app-privilege-service.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/auth_module/services/app-session-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/auth_module/services/app-session-service.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/base.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/base.module.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/crud-base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/crud-base.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/crud-with-dialog-base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/crud-with-dialog-base.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-captcha.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-captcha.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-dropdown.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-dropdown.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-field-base.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-field-base.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-grid.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-grid.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-hidden.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-hidden.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-multiselect.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-multiselect.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-password.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-password.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-submit-button.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-submit-button.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-text.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-text.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-textarea.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-textarea.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-upload.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-upload.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-validation-messages.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/components/form-validation-messages.component.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/pipes/trans-pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/pipes/trans-pipe.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/services/app-api-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/services/app-api-service.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/services/app-config-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/services/app-config-service.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/services/app-translation-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/services/app-translation-service.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-captcha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-captcha.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-dropdown.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-dropdown.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-grid.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-hidden.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-hidden.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-multiselect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-multiselect.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-password.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-submit-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-submit-button.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-text.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-textarea.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-upload.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-validation-messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/base_module/views/form-validation-messages.html -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/action-response-dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/action-response-dto.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/example-data-input-dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/example-data-input-dto.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/grid-search-column-filter-match-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/grid-search-column-filter-match-mode.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/grid-search-column-filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/grid-search-column-filter.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/grid-search-request-dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/grid-search-request-dto.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/grid-search-response-dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/grid-search-response-dto.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/ilist_role-output-dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/ilist_role-output-dto.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/ilist_user-type-output-dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/ilist_user-type-output-dto.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/plugin-info-output-dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/plugin-info-output-dto.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/role-input-dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/role-input-dto.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/role-output-dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/role-output-dto.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/session-info-dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/session-info-dto.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/tenant-input-dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/tenant-input-dto.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/user-change-password-input-dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/user-change-password-input-dto.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/user-input-dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/user-input-dto.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/user-login-request-dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/user-login-request-dto.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/user-output-dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/user-output-dto.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/user-type-output-dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/user-type-output-dto.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/user-upload-avatar-input-dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/user-upload-avatar-input-dto.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/website-info-output-dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/website-info-output-dto.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/website-settings-dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/dtos/website-settings-dto.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/generated.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/generated.module.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/privileges/privileges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/privileges/privileges.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/privileges/user-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/privileges/user-types.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/services/captcha-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/services/captcha-service.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/services/example-data-manage-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/services/example-data-manage-service.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/services/role-manage-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/services/role-manage-service.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/services/session-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/services/session-service.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/services/tenant-manage-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/services/tenant-manage-service.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/services/user-login-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/services/user-login-service.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/services/user-manage-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/services/user-manage-service.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/services/user-profile-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/services/user-profile-service.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/services/website-manage-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/services/website-manage-service.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/translations/en-us.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/translations/en-us.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/translations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/translations/index.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/translations/zh-cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/modules/generated_module/translations/zh-cn.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/polyfills.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/tslint.json -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor.ts -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/fonts/font-awesome/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/fonts/font-awesome/fontawesome-webfont.eot -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/fonts/font-awesome/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/fonts/font-awesome/fontawesome-webfont.svg -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/fonts/font-awesome/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/fonts/font-awesome/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/fonts/font-awesome/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/fonts/font-awesome/fontawesome-webfont.woff -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/fonts/font-awesome/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/fonts/font-awesome/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/images/default-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/images/default-avatar.jpg -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/images/favicon.ico -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/images/logo.png -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/styles/font-awesome/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/styles/font-awesome/font-awesome.css -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/styles/preloader/preloader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/styles/preloader/preloader.css -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/styles/primeng/images/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/styles/primeng/images/color.png -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/styles/primeng/images/hue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/styles/primeng/images/hue.png -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/styles/primeng/images/line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/styles/primeng/images/line.gif -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/styles/primeng/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/styles/primeng/images/loading.gif -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/styles/primeng/images/password-meter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/styles/primeng/images/password-meter.png -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/styles/primeng/primeng.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/styles/primeng/primeng.min.css -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/styles/primeng/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/styles/primeng/site.css -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/styles/primeng/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/src/vendor/styles/primeng/theme.css -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/tsconfig.json -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Angular.Website/static/tslint.json -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.ApiExplorer/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.ApiExplorer/plugin.json -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.ApiExplorer/src/Components/Swagger/SwaggerApiProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.ApiExplorer/src/Components/Swagger/SwaggerApiProvider.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.ApiExplorer/src/Controllers/SwaggerResourcesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.ApiExplorer/src/Controllers/SwaggerResourcesController.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.ApiExplorer/static/swagger.js/swagger-site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.ApiExplorer/static/swagger.js/swagger-site.js -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/plugin.json -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Attributes/CheckFileAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Attributes/CheckFileAttribute.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Attributes/NoParameterValidationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Attributes/NoParameterValidationAttribute.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Dtos/ActionResponseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Dtos/ActionResponseDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Dtos/GridSearchColumnFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Dtos/GridSearchColumnFilter.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Dtos/GridSearchColumnFilterMatchMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Dtos/GridSearchColumnFilterMatchMode.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Dtos/GridSearchRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Dtos/GridSearchRequestDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Dtos/GridSearchResponseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Dtos/GridSearchResponseDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Dtos/IDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Dtos/IDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Dtos/IInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Dtos/IInputDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Dtos/IOutputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Dtos/IOutputDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Extensions/IHttpContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Extensions/IHttpContextExtensions.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Extensions/IInputDtoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Extensions/IInputDtoExtensions.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Mappers/BaseMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Mappers/BaseMapperProfile.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Services/Bases/ApplicationServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Services/Bases/ApplicationServiceBase.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Services/Interfaces/IApplicationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Services/Interfaces/IApplicationService.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Services/Structs/ApplicationServiceApiMethodInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Services/Structs/ApplicationServiceApiMethodInfo.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Services/Structs/ApplicationServiceApiParameterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Application/Services/Structs/ApplicationServiceApiParameterInfo.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/ActionFilters/UnitOfWorkAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/ActionFilters/UnitOfWorkAttribute.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/ActionParameterProviders/ValidatedActionParameterProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/ActionParameterProviders/ValidatedActionParameterProvider.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/CORSExposeHeaders/Interfaces/ICORSExposeHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/CORSExposeHeaders/Interfaces/ICORSExposeHeader.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/DatabaseInitializeHandler/DatabaseInitializeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/DatabaseInitializeHandler/DatabaseInitializeHandler.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/Exceptions/BadRequestException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/Exceptions/BadRequestException.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/Exceptions/ForbiddenException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/Exceptions/ForbiddenException.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/Exceptions/NotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/Exceptions/NotFoundException.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/GridSearchResponseBuilder/GridSearchResponseBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/GridSearchResponseBuilder/GridSearchResponseBuilder.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/JsonConverters/NullToDefaultGuidConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/JsonConverters/NullToDefaultGuidConverter.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/Languages/Chinese.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/Languages/Chinese.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/Languages/English.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/Languages/English.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/RequestHandlers/CorsRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/RequestHandlers/CorsRequestHandler.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/RequestHandlers/LocaleRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/RequestHandlers/LocaleRequestHandler.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/Translates/Bases/DictionaryTranslationProviderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/Translates/Bases/DictionaryTranslationProviderBase.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/Translates/zh_CN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/Translates/zh_CN.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/ValidationMessageProviders/Interfaces/IValidationMessageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/ValidationMessageProviders/Interfaces/IValidationMessageProvider.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/ValidationMessageProviders/RegularExpressionMessageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/ValidationMessageProviders/RegularExpressionMessageProvider.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/ValidationMessageProviders/RequiredMessageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/ValidationMessageProviders/RequiredMessageProvider.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/ValidationMessageProviders/StringLengthMessageProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Components/ValidationMessageProviders/StringLengthMessageProvider.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Entities/Bases/ManyToManyEntityBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Entities/Bases/ManyToManyEntityBase.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Entities/Interfaces/IHaveCreateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Entities/Interfaces/IHaveCreateTime.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Entities/Interfaces/IHaveDeleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Entities/Interfaces/IHaveDeleted.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Entities/Interfaces/IHaveUpdateTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Entities/Interfaces/IHaveUpdateTime.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Entities/TypeTraits/CreateTimeTypeTrait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Entities/TypeTraits/CreateTimeTypeTrait.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Entities/TypeTraits/DeletedTypeTrait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Entities/TypeTraits/DeletedTypeTrait.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Entities/TypeTraits/UpdateTimeTypeTrait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Entities/TypeTraits/UpdateTimeTypeTrait.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Filters/CreateTimeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Filters/CreateTimeFilter.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Filters/DeletedFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Filters/DeletedFilter.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Filters/GuidEntityFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Filters/GuidEntityFilter.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Filters/Interfaces/IEntityOperationFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Filters/Interfaces/IEntityOperationFilter.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Filters/Interfaces/IEntityQueryFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Filters/Interfaces/IEntityQueryFilter.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Filters/UpdateTimeFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Filters/UpdateTimeFilter.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Repositories/Bases/ManyToManyRepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Repositories/Bases/ManyToManyRepositoryBase.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Repositories/Bases/RepositoryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Repositories/Bases/RepositoryBase.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Repositories/Interfaces/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Repositories/Interfaces/IRepository.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Services/Bases/DomainServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Services/Bases/DomainServiceBase.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Services/Interfaces/IDomainService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Services/Interfaces/IDomainService.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Uow/Extensions/IUnitOfWorkExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Uow/Extensions/IUnitOfWorkExtensions.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Uow/Interfaces/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Uow/Interfaces/IUnitOfWork.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Uow/UnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Domain/Uow/UnitOfWork.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Base/src/Plugin.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Captcha/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Captcha/plugin.json -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Captcha/src/Application/Services/CaptchaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Captcha/src/Application/Services/CaptchaService.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Captcha/src/Domain/Services/CaptchaManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Captcha/src/Domain/Services/CaptchaManager.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/plugin.json -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Application/Dtos/TenantInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Application/Dtos/TenantInputDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Application/Dtos/TenantOutputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Application/Dtos/TenantOutputDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Application/Mappings/MultiTenantMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Application/Mappings/MultiTenantMapperProfile.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Components/TenantProviders/ITenantProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Components/TenantProviders/ITenantProvider.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Domain/Entities/Interfaces/IHaveOwnerTenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Domain/Entities/Interfaces/IHaveOwnerTenant.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Domain/Entities/Tenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Domain/Entities/Tenant.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Domain/Entities/TypeTraits/OwnerTenantTypeTrait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Domain/Entities/TypeTraits/OwnerTenantTypeTrait.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Domain/Filters/OwnerTenantFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Domain/Filters/OwnerTenantFilter.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Domain/Repository/TenantRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Domain/Repository/TenantRepository.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Domain/Services/TenantManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Domain/Services/TenantManager.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.MultiTenant/src/Plugin.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/plugin.json -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/PluginInfoOutputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/PluginInfoOutputDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/RoleInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/RoleInputDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/RoleOutputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/RoleOutputDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/SessionInfoDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/SessionInfoDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/UserChangePasswordInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/UserChangePasswordInputDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/UserInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/UserInputDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/UserLoginRequestDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/UserLoginRequestDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/UserOutputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/UserOutputDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/UserTypeOutputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/UserTypeOutputDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/UserUploadAvatarInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/UserUploadAvatarInputDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/WebsiteInfoOutputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/WebsiteInfoOutputDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/WebsiteSettingsDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Dtos/WebsiteSettingsDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Mappers/OrganizationMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Mappers/OrganizationMapperProfile.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Services/RoleManageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Services/RoleManageService.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Services/SessionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Services/SessionService.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Services/TenantManageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Services/TenantManageService.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Services/UserLoginServiec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Services/UserLoginServiec.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Services/UserManageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Services/UserManageService.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Services/UserProfileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Services/UserProfileService.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Services/WebsiteManageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Application/Services/WebsiteManageService.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Components/ActionFilters/CheckPrivilegeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Components/ActionFilters/CheckPrivilegeAttribute.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Components/ExtraConfigKeys/OrganizationExtraConfigKeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Components/ExtraConfigKeys/OrganizationExtraConfigKeys.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Components/GenericConfigs/Attributes/GenericConfigAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Components/GenericConfigs/Attributes/GenericConfigAttribute.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Components/GenericConfigs/WebsiteSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Components/GenericConfigs/WebsiteSettings.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Components/PrivilegeProviders/DefaultPrivilegeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Components/PrivilegeProviders/DefaultPrivilegeProvider.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Components/PrivilegeProviders/Interfaces/IPrivilegesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Components/PrivilegeProviders/Interfaces/IPrivilegesProvider.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Components/PrivilegeTranslators/DefaultPrivilegeTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Components/PrivilegeTranslators/DefaultPrivilegeTranslator.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Components/PrivilegeTranslators/Interfaces/IPrivilegeTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Components/PrivilegeTranslators/Interfaces/IPrivilegeTranslator.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Components/Translates/zh_CN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Components/Translates/zh_CN.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Components/UserLoginHandlers/Interfaces/IUserLoginHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Components/UserLoginHandlers/Interfaces/IUserLoginHandler.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/GenericConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/GenericConfig.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/Interfaces/IAmAdmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/Interfaces/IAmAdmin.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/Interfaces/IAmAnonymouseUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/Interfaces/IAmAnonymouseUser.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/Interfaces/IAmSuperAdmin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/Interfaces/IAmSuperAdmin.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/Interfaces/IAmUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/Interfaces/IAmUser.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/Interfaces/ICanUseAdminPanel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/Interfaces/ICanUseAdminPanel.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/Interfaces/IHaveOwner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/Interfaces/IHaveOwner.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/Interfaces/IUserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/Interfaces/IUserType.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/Role.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/TypeTraits/OwnerTypeTrait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/TypeTraits/OwnerTypeTrait.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/User.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/UserToRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/UserToRole.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/UserTypes/AdminUserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/UserTypes/AdminUserType.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/UserTypes/AnonymouseUserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/UserTypes/AnonymouseUserType.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/UserTypes/NormalUserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/UserTypes/NormalUserType.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/UserTypes/SuperAdminUserType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Entities/UserTypes/SuperAdminUserType.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Extensions/SessionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Extensions/SessionExtensions.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Extensions/UserExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Extensions/UserExtensions.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Filters/OwnerFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Filters/OwnerFilter.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Filters/PreventModifySuperAdminFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Filters/PreventModifySuperAdminFilter.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Repositories/GenericConfigRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Repositories/GenericConfigRepository.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Repositories/RoleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Repositories/RoleRepository.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Repositories/UserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Repositories/UserRepository.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Repositories/UserToRoleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Repositories/UserToRoleRepository.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Services/AdminManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Services/AdminManager.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Services/GenericConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Services/GenericConfigManager.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Services/PrivilegeManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Services/PrivilegeManager.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Services/RoleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Services/RoleManager.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Services/UserManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Services/UserManager.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Structs/AuthRequirement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Domain/Structs/AuthRequirement.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/src/Plugin.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/static/mvvm.common.organization.images/default-avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.Organization/static/mvvm.common.organization.images/default-avatar.jpg -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/plugin.json -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/src/Components/CacheIsolationPolicies/CacheIsolateByIdent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/src/Components/CacheIsolationPolicies/CacheIsolateByIdent.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/src/Components/CacheIsolationPolicies/CacheIsolateByTenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/src/Components/CacheIsolationPolicies/CacheIsolateByTenant.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/src/Components/ScheduledTasks/SessionCleaner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/src/Components/ScheduledTasks/SessionCleaner.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/src/Components/SessionIdStore/Interfaces/ISessionIdStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/src/Components/SessionIdStore/Interfaces/ISessionIdStore.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/src/Components/SessionIdStore/SessionIdHeaderStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/src/Components/SessionIdStore/SessionIdHeaderStore.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/src/Components/TenantProviders/SessionTenantProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/src/Components/TenantProviders/SessionTenantProvider.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/src/Domain/Entities/Session.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/src/Domain/Entities/Session.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/src/Domain/Extensions/SessionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/src/Domain/Extensions/SessionExtensions.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/src/Domain/Repositories/SessionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/src/Domain/Repositories/SessionRepository.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/src/Domain/Services/SessionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.SessionState/src/Domain/Services/SessionManager.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/plugin.json -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Application/Dtos/ScheduledTaskLogOutputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Application/Dtos/ScheduledTaskLogOutputDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Application/Dtos/ScheduledTaskOutputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Application/Dtos/ScheduledTaskOutputDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Application/Mappers/TaskSchedulerMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Application/Mappers/TaskSchedulerMapperProfile.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Components/ScheduledTasks/DefaultScheduledTaskProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Components/ScheduledTasks/DefaultScheduledTaskProvider.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Components/ScheduledTasks/Interfaces/IScheduledTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Components/ScheduledTasks/Interfaces/IScheduledTask.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Components/ScheduledTasks/Interfaces/IScheduledTaskProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Components/ScheduledTasks/Interfaces/IScheduledTaskProvider.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Components/ScheduledTasks/LogCleaner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Components/ScheduledTasks/LogCleaner.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Domain/Entities/ScheduledTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Domain/Entities/ScheduledTask.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Domain/Entities/ScheduledTaskLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Domain/Entities/ScheduledTaskLog.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Domain/Repositories/ScheduledTaskLogRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Domain/Repositories/ScheduledTaskLogRepository.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Domain/Repositories/ScheduledTaskRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Domain/Repositories/ScheduledTaskRepository.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Domain/Services/ScheduledTaskLogManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Domain/Services/ScheduledTaskLogManager.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Domain/Services/ScheduledTaskManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Domain/Services/ScheduledTaskManager.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Common.TaskScheduler/src/Plugin.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Example.CrudExample/plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Example.CrudExample/plugin.json -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Example.CrudExample/src/Application/Dtos/ExampleDataInputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Example.CrudExample/src/Application/Dtos/ExampleDataInputDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Example.CrudExample/src/Application/Dtos/ExampleDataOutputDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Example.CrudExample/src/Application/Dtos/ExampleDataOutputDto.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Example.CrudExample/src/Application/Mappers/CrudExampleMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Example.CrudExample/src/Application/Mappers/CrudExampleMapperProfile.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Example.CrudExample/src/Application/Services/ExampleDataManageService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Example.CrudExample/src/Application/Services/ExampleDataManageService.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Example.CrudExample/src/Components/Translates/zh_CN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Example.CrudExample/src/Components/Translates/zh_CN.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Example.CrudExample/src/Domain/Entities/ExampleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Example.CrudExample/src/Domain/Entities/ExampleData.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Example.CrudExample/src/Domain/Repositories/ExampleDataRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Example.CrudExample/src/Domain/Repositories/ExampleDataRepository.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/MVVM.Example.CrudExample/src/Domain/Services/ExampleDataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/MVVM.Example.CrudExample/src/Domain/Services/ExampleDataManager.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ZKWeb.MVVMPlugins/ZKWeb.MVVMPlugins.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zkweb-framework/ZKWeb.MVVMDemo/HEAD/src/ZKWeb.MVVMPlugins/ZKWeb.MVVMPlugins.csproj --------------------------------------------------------------------------------