Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.Interface/IServiceTemplate/ILogService.cs

10 lines
184 B
C#
Raw Normal View History

2022-09-09 15:53:11 +08:00
using Yi.Framework.Model.Models;
2022-04-23 00:57:14 +08:00
using Yi.Framework.Repository;
namespace Yi.Framework.Interface
{
2022-09-09 15:53:11 +08:00
public partial interface ILogService:IBaseService<LogEntity>
{
2022-04-23 00:57:14 +08:00
}
}