新增设计文档

This commit is contained in:
yubaolee
2018-03-22 17:33:12 +08:00
parent 9edd6930b4
commit 6dea67862a
19 changed files with 172 additions and 1095 deletions

View File

@@ -30,6 +30,7 @@ namespace OpenAuth.Repository.Domain
this.SchemeId= string.Empty;
this.DbName= string.Empty;
this.FrmType= 0;
this.FrmData = string.Empty;
this.FrmContentData= string.Empty;
this.FrmContentParse= string.Empty;
this.FrmId= string.Empty;
@@ -137,5 +138,7 @@ namespace OpenAuth.Repository.Domain
/// </summary>
public string MakerList { get; set; }
public string FrmData { get; set; }
}
}

View File

@@ -58,6 +58,9 @@ namespace OpenAuth.Repository.Mapping
Property(t => t.SchemeContent)
.HasColumnName("SchemeContent")
.IsOptional();
Property(t => t.FrmData)
.HasColumnName("FrmData")
.IsOptional();
Property(t => t.SchemeId)
.HasColumnName("SchemeId")
.HasMaxLength(50)