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

22 lines
486 B
C#
Raw Normal View History

2022-04-02 17:44:50 +08:00
using System;
2021-10-11 21:50:50 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
2022-01-11 16:40:15 +08:00
using Yi.Framework.Common.Const;
using Yi.Framework.Common.Helper;
2021-11-02 14:01:37 +08:00
using Yi.Framework.Core;
2021-10-11 21:50:50 +08:00
using Yi.Framework.Interface;
2021-10-12 18:05:01 +08:00
using Yi.Framework.Model;
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-02 17:44:50 +08:00
public partial class UserService : Repository<User>, IUserService
2021-10-11 21:50:50 +08:00
{
2022-04-02 17:44:50 +08:00
2021-10-22 16:48:03 +08:00
}
2021-10-11 21:50:50 +08:00
}