李昊 4 년 전
부모
커밋
d5774d016a
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      gx_api/GxPress/Repository/GxPress.Repository.Implement/NoticeRepository.cs

+ 2 - 2
gx_api/GxPress/Repository/GxPress.Repository.Implement/NoticeRepository.cs

@@ -536,7 +536,7 @@ namespace GxPress.Repository.Implement
                                         tede_user c ON b.UserId = c.Id
                                             left JOIN
                                         tede_addressee d ON d.Id = a.MiddleSonId
-                                    WHERE a.IsRecall=0,
+                                    WHERE a.IsRecall=0 and 
                                         a.UserId = {request.UserId} and a.FolderType={noticeTypeValue}
                                             {sb}
                                     ORDER BY a.IsTop desc,a.LastModifiedDate desc,a.AttributeValue desc
@@ -551,7 +551,7 @@ namespace GxPress.Repository.Implement
                                         tede_user c ON b.UserId = c.Id
                                             left JOIN
                                         tede_addressee d ON d.Id = a.MiddleSonId
-                                    WHERE
+                                    WHERE a.IsRecall=0 and 
                                         a.UserId = {1} and a.FolderType={2}
                                             {0}", sb, request.UserId, noticeTypeValue);
             var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);