mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-04-05 08:37:28 +08:00
22 lines
369 B
C#
22 lines
369 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
|
|
namespace OpenAuth.Domain
|
|
{
|
|
/// <summary>
|
|
/// 用户ID
|
|
/// </summary>
|
|
public partial class User
|
|
{
|
|
public void CheckPassword(string password)
|
|
{
|
|
if (Password != password)
|
|
{
|
|
throw new Exception("密码错误");
|
|
}
|
|
}
|
|
|
|
}
|
|
} |