Files
Yi.Admin/Yi.Furion.Net6/Yi.Framework.Module/WebFirstManager/Impl/TableService.cs

21 lines
692 B
C#
Raw Normal View History

2023-09-19 23:48:37 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Furion.DependencyInjection;
using Furion.DynamicApiController;
using Microsoft.AspNetCore.Mvc;
2023-09-22 10:25:05 +08:00
using Yi.Framework.Infrastructure.Ddd.Services;
using Yi.Framework.Module.WebFirstManager.Dtos.Table;
using Yi.Framework.Module.WebFirstManager.Dtos.Template;
using Yi.Framework.Module.WebFirstManager.Entities;
2023-09-19 23:48:37 +08:00
namespace Yi.Framework.Module.WebFirstManager.Impl
{
[ApiDescriptionSettings("WebFirstManager")]
2023-09-22 10:25:05 +08:00
public class TableService : CrudAppService<TableEntity, TableDto, long, TableGetListInput> ,ITableService, ITransient, IDynamicApiController
2023-09-19 23:48:37 +08:00
{
}
}