全面修改Id为Guid类型,为2.0版做准备

This commit is contained in:
yubaolee
2016-09-02 18:05:17 +08:00
parent a8fd59e247
commit 574f5f9e1f
327 changed files with 10071 additions and 18206 deletions

View File

@@ -7,41 +7,25 @@
// Author:Yubao Li
// </autogenerated>
//------------------------------------------------------------------------------
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenAuth.Domain
{
/// <summary>
/// 多对多关系集中映射
/// </summary>
public partial class Relevance
public partial class Relevance :Entity
{
public Relevance()
{
this.Id= 0;
this.FirstId= 0;
this.SecondId= 0;
this.Description= string.Empty;
this.Description= string.Empty;
this.Key= string.Empty;
this.Status= 0;
this.OperateTime= DateTime.Now;
this.OperatorId= 0;
}
/// <summary>
/// 流水号
/// </summary>
public int Id { get; set; }
/// <summary>
/// 第一个表主键ID
/// </summary>
public int FirstId { get; set; }
/// <summary>
/// 第二个表主键ID
/// </summary>
public int SecondId { get; set; }
/// <summary>
/// 描述
/// </summary>
@@ -62,6 +46,14 @@ namespace OpenAuth.Domain
/// 授权人
/// </summary>
public int OperatorId { get; set; }
/// <summary>
/// 第一个表主键ID
/// </summary>
public System.Guid FirstId { get; set; }
/// <summary>
/// 第二个表主键ID
/// </summary>
public System.Guid SecondId { get; set; }
}
}