李昊 4 年之前
父节点
当前提交
d6d524224e

+ 10 - 0
gx_api/GxPress/Model/GxPress.Entity/Notice.cs

@@ -79,5 +79,15 @@ namespace GxPress.Entity
         /// <value></value>
         [DataColumn]
         public int SonId { get; set; }
+        /// <summary>
+        ///发起用户名
+        /// </summary>
+        [DataColumn]
+        public int SendUserName { get; set; }
+        /// <summary>
+        /// 发起用户名id
+        /// </summary>
+        [DataColumn]
+        public string SendUserId { get; set; }
     }
 }

+ 0 - 2
gx_api/GxPress/Model/GxPress.Result/Notice/NoticeDetailResult.cs

@@ -1,8 +1,6 @@
 using System;
 using System.Collections.Generic;
-using System.Text;
 using GxPress.Common.Page;
-using GxPress.EnumConst;
 using GxPress.Result.App.Analyze;
 
 namespace GxPress.Result.Notice

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

@@ -330,7 +330,7 @@ namespace GxPress.Repository.Implement
             else if (request.SearchType == 3)
                 sb += " AND a.IsDelete = 1 AND a.AttributeValue=1";
             else if (request.SearchType > 3)
-                sb += $" AND b.TypeValue={request.SearchType}";
+                sb += $" AND b.TypeValue={request.SearchType} AND a.IsDelete = 0";
             else
                 sb += " AND a.IsDelete = 0 AND a.NoticeAddresseeType != 2";
             if (!string.IsNullOrEmpty(request.Keyword))

+ 1 - 1
gx_api/GxPress/Service/GxPress.Service.Implement/Notice/NoticeService.Insert.cs

@@ -176,7 +176,7 @@ namespace GxPress.Service.Implement.Notice
                             var middle = new Entity.Middle.Middle
                             {
                                 MiddleId = noticeId,
-                                FolderType = GxPress.EnumConst.FolderTypeConst.Notice.GetHashCode(),
+                                FolderType = GxPress.EnumConst.AllTypeConst.Inbox.GetHashCode(),
                                 IsTop = false,
                                 AttributeValue = 1,
                                 ParentId = 0,