Files
Yi.Framework/Yi.Furion.Net6/Yi.Framework.Module/WebFirstManager/IFieldService.cs
2023-09-19 23:48:37 +08:00

15 lines
446 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Yi.Framework.Infrastructure.Ddd.Services.Abstract;
using Yi.Framework.Module.WebFirstManager.Dtos.Field;
namespace Yi.Framework.Module.WebFirstManager
{
public interface IFieldService : ICrudAppService<FieldGetOutDto, FieldGetListOutputDto, long, FieldGetListInput, FieldCreateInput, FieldUpdateInput>
{
}
}