This commit is contained in:
sunkaixuan
2017-05-28 21:34:10 +08:00
parent 90e334573d
commit 522786541d
2 changed files with 2 additions and 3 deletions

View File

@@ -49,7 +49,6 @@ namespace SqlSugar
}
#endregion
#region Setting Content
public IDbFirst IsCreateAttribute(bool isCreateAttribute = true)
{
@@ -82,7 +81,7 @@ namespace SqlSugar
{
throw new NotImplementedException();
}
public void CreateClassFile()
public void CreateClassFile(string savePath)
{
throw new NotImplementedException();
}

View File

@@ -19,7 +19,7 @@ namespace SqlSugar
IDbFirst Where(Func<string,bool> func);
IDbFirst Where(DbObjectType dbObjectType);
List<SchemaInfo> GetSchemaInfoList { get; }
void CreateClassFile();
void CreateClassFile(string savePath);
void ToClassStringList();
}
}