|
@@ -55,7 +55,7 @@ namespace GxPress.Repository.Implement
|
|
|
}
|
|
|
public async Task<IEnumerable<ArticleGroup>> GetListAsync(int userId)
|
|
|
{
|
|
|
- string sql = $@"select * from ccpph.tede_article_group where Id not in(SELECT ArticleGroupId FROM ccpph.tede_article_group_user where UserId={userId})";
|
|
|
+ string sql = $@"select * from ccpph.tede_article_group where Id not in(SELECT ArticleGroupId FROM ccpph.tede_article_group_user where UserId={userId}) and IsSystemDefault=0";
|
|
|
var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
|
|
|
var database = new Database(databaseType, _connectionString);
|
|
|
var connection = database.GetConnection();
|