Files
Yi.Admin/Yi.Framework.Net6/Yi.Framework.Service/UserService.cs

15 lines
286 B
C#
Raw Normal View History

2022-04-06 22:22:45 +08:00
using SqlSugar;
using Yi.Framework.Interface;
2021-10-11 21:50:50 +08:00
using Yi.Framework.Model.Models;
2022-04-02 17:44:50 +08:00
using Yi.Framework.Repository;
2021-10-11 21:50:50 +08:00
namespace Yi.Framework.Service
{
2022-04-06 22:22:45 +08:00
public partial class UserService
2021-10-11 21:50:50 +08:00
{
2022-04-06 22:22:45 +08:00
public UserService(ISqlSugarClient context) : base(context)
{
}
2021-10-22 16:48:03 +08:00
}
2021-10-11 21:50:50 +08:00
}