|
@@ -308,7 +308,7 @@ namespace GxPress.Repository.Implement
|
|
|
INNER JOIN
|
|
|
tede_department d ON d.Id = c.DepartmentId
|
|
|
WHERE
|
|
|
- a.GroupId > 0
|
|
|
+ a.GroupId > 0 and a.IsDraft=0
|
|
|
{sqlStr}
|
|
|
ORDER BY a.CreatedDate DESC limit @page,@pageSize";
|
|
|
string countSql = $@"SELECT
|
|
@@ -320,7 +320,7 @@ namespace GxPress.Repository.Implement
|
|
|
INNER JOIN
|
|
|
tede_user c ON c.Id = a.UserId
|
|
|
WHERE
|
|
|
- a.GroupId > 0
|
|
|
+ a.GroupId > 0 and a.IsDraft=0
|
|
|
{sqlStr}
|
|
|
ORDER BY a.CreatedDate DESC";
|
|
|
var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
|
|
@@ -469,7 +469,7 @@ namespace GxPress.Repository.Implement
|
|
|
INNER JOIN
|
|
|
tede_department d ON d.Id = c.DepartmentId
|
|
|
WHERE
|
|
|
- a.GroupId > 0
|
|
|
+ a.GroupId > 0 and a.IsDraft=0
|
|
|
{sqlStr}
|
|
|
ORDER BY a.CreatedDate DESC limit @page,@pageSize";
|
|
|
string countSql = $@"SELECT
|
|
@@ -481,7 +481,7 @@ namespace GxPress.Repository.Implement
|
|
|
INNER JOIN
|
|
|
tede_user c ON c.Id = a.UserId
|
|
|
WHERE
|
|
|
- a.GroupId > 0
|
|
|
+ a.GroupId > 0 and a.IsDraft=0
|
|
|
{sqlStr}
|
|
|
ORDER BY a.CreatedDate DESC";
|
|
|
var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
|