这是基于vue-vben-admin 模板适用于abp Vnext的前端管理项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

1.3 KiB

LINGYUN.Abp.LocalizationManagement.Application

The application service layer implementation module for localization management, providing application service implementations for localization resource management.

Features

  • Implements language management application services
  • Implements resource management application services
  • Implements text management application services
  • Supports AutoMapper object mapping
  • Provides standardized CRUD operations

Module Dependencies

[DependsOn(typeof(AbpLocalizationManagementApplicationModule))]
public class YouProjectModule : AbpModule
{
  // other
}

Application Services

  • LanguageAppService: Language management application service

    • Create language
    • Update language
    • Delete language
    • Get language list
    • Get language details
  • ResourceAppService: Resource management application service

    • Create resource
    • Update resource
    • Delete resource
    • Get resource list
    • Get resource details
  • TextAppService: Text management application service

    • Create text
    • Update text
    • Delete text
    • Get text list
    • Get text details

Permissions

All application services follow the permission requirements defined by the module. See the permission definitions in the Domain.Shared module for details.

More Information