mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-07-15 05:13:25 +08:00
16 lines
392 B
C#
16 lines
392 B
C#
namespace OpenAuth.WebApi.Areas.SSO.Models.Services
|
|
{
|
|
public class AppUserService : ServiceContext
|
|
{
|
|
public AppUser Get(string username = "")
|
|
{
|
|
//模拟用户
|
|
return new AppUser
|
|
{
|
|
Nick = "超级管理员",
|
|
UserName = username,
|
|
UserPwd = "xxxxxxxxx"
|
|
};
|
|
}
|
|
}
|
|
} |