//------------------------------------------------------------------------------ // // This code was generated by a CodeSmith Template. // // DO NOT MODIFY contents of this file. Changes to this // file will be lost if the code is regenerated. // Author:Yubao Li // //------------------------------------------------------------------------------ using System; namespace OpenAuth.Domain { /// /// 多对多关系集中映射 /// public partial class Relevance :Entity { public Relevance() { this.Description= string.Empty; this.Key= string.Empty; this.Status= 0; this.OperateTime= DateTime.Now; this.OperatorId= 0; } /// /// 描述 /// public string Description { get; set; } /// /// /// public string Key { get; set; } /// /// 状态 /// public int Status { get; set; } /// /// 授权时间 /// public System.DateTime OperateTime { get; set; } /// /// 授权人 /// public int OperatorId { get; set; } /// /// 第一个表主键ID /// public System.Guid FirstId { get; set; } /// /// 第二个表主键ID /// public System.Guid SecondId { get; set; } } }