Routine Update

This commit is contained in:
yubaolee 2015-10-31 23:14:17 +08:00
parent dbe0b9da4a
commit 55f334004e
2 changed files with 8 additions and 1 deletions

View File

@ -45,7 +45,13 @@ namespace OpenAuth.Domain
/// 所属功能模块流水号
/// </summary>
/// <returns></returns>
public int ModuleId { get; set; }
public int ModuleId { get; set; }
/// <summary>
/// 所属页面ID
/// </summary>
public int PageId { get; set; }
/// <summary>

View File

@ -31,6 +31,7 @@ namespace OpenAuth.Repository.Models.Mapping
this.Property(t => t.Name).HasColumnName("Name");
this.Property(t => t.Type).HasColumnName("Type");
this.Property(t => t.ModuleId).HasColumnName("ModuleId");
this.Property(t => t.PageId).HasColumnName("PageId");
this.Property(t => t.Remark).HasColumnName("Remark");
}
}