调整结构

This commit is contained in:
yubaolee
2017-10-11 16:19:34 +08:00
parent 22ba70b47c
commit 0659eb84c1
101 changed files with 2349 additions and 2224 deletions

View File

@@ -4,11 +4,11 @@ namespace OpenAuth.Domain
{
public abstract class Entity
{
public System.Guid Id { get; set; }
public string Id { get; set; }
public Entity()
{
Id = Guid.NewGuid();
Id = Guid.NewGuid().ToString();
}
}
}