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

14 lines
299 B
C#
Raw Normal View History

2022-10-02 14:02:21 +08:00
using System.Collections.Generic;
using System.Threading.Tasks;
using Yi.Framework.Common.Models;
using Yi.Framework.Model.Models;
2022-10-01 23:53:43 +08:00
using Yi.Framework.Repository;
namespace Yi.Framework.Interface
{
2022-10-02 14:02:21 +08:00
public partial interface ILoginLogService : IBaseService<LoginLogEntity>
{
2022-10-01 23:53:43 +08:00
}
}