feat: 同步
This commit is contained in:
@@ -7,11 +7,13 @@ using Yi.Framework.Infrastructure.Ddd.Services;
|
||||
using Yi.Framework.Module.DictionaryManager.Dtos.Dictionary;
|
||||
using Yi.Framework.Module.DictionaryManager.Entities;
|
||||
|
||||
|
||||
namespace Yi.Framework.Module.DictionaryManager
|
||||
{
|
||||
/// <summary>
|
||||
/// Dictionary服务实现
|
||||
/// </summary>
|
||||
[ApiDescriptionSettings("DictionaryManager")]
|
||||
public class DictionaryService : CrudAppService<DictionaryEntity, DictionaryGetOutputDto, DictionaryGetListOutputDto, long, DictionaryGetListInputVo, DictionaryCreateInputVo, DictionaryUpdateInputVo>,
|
||||
IDictionaryService,IDynamicApiController,ITransient
|
||||
{
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
using Furion.DependencyInjection;
|
||||
using Furion.DynamicApiController;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using SqlSugar;
|
||||
using Yi.Framework.Infrastructure.Ddd.Dtos;
|
||||
using Yi.Framework.Infrastructure.Ddd.Services;
|
||||
@@ -11,6 +12,7 @@ namespace Yi.Framework.Module.DictionaryManager
|
||||
/// <summary>
|
||||
/// DictionaryType服务实现
|
||||
/// </summary>
|
||||
[ApiDescriptionSettings("DictionaryManager")]
|
||||
public class DictionaryTypeService : CrudAppService<DictionaryTypeEntity, DictionaryTypeGetOutputDto, DictionaryTypeGetListOutputDto, long, DictionaryTypeGetListInputVo, DictionaryTypeCreateInputVo, DictionaryTypeUpdateInputVo>,
|
||||
IDictionaryTypeService, IDynamicApiController, ITransient
|
||||
{
|
||||
|
||||
@@ -16,6 +16,7 @@ namespace Yi.Framework.Module.FileManager
|
||||
/// <summary>
|
||||
/// 文件处理
|
||||
/// </summary>
|
||||
[ApiDescriptionSettings("FileManager")]
|
||||
public class FileService : ApplicationService, IFileService, IDynamicApiController, ITransient
|
||||
{
|
||||
private readonly IRepository<FileEntity> _repository;
|
||||
|
||||
@@ -11,6 +11,7 @@ namespace Yi.Framework.Module.OperLogManager
|
||||
/// OperationLog服务实现
|
||||
/// </summary>
|
||||
//[AppService]
|
||||
[ApiDescriptionSettings("OperLogManager")]
|
||||
public class OperationLogService : CrudAppService<OperationLogEntity, OperationLogGetListOutputDto, long, OperationLogGetListInputVo>,
|
||||
IOperationLogService, IDynamicApiController, ITransient
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user