李昊 4 년 전
부모
커밋
a346735087

+ 2 - 0
gx_api/GxPress/Model/GxPress.EnumConst/AllTypeConst.cs

@@ -33,6 +33,8 @@ namespace GxPress.EnumConst
         MySubmitted = 16,
         [Description("抄送我的")]
         MyCc = 17,
+        [Description("匿名信")]
+        Anonymity = 18,
         [Description("文件")]
         File = 300,
         [Description("图片")]

+ 1 - 1
gx_api/GxPress/Model/GxPress.Request/Notice/NoticeInRequest.cs

@@ -82,7 +82,7 @@ namespace GxPress.Request.Notice
         public int SoureId { get; set; }
 
         /// <summary>
-        ///  5 通知 6站内信 15 我审批的 16 我发出的 17 抄送我的
+        ///  5 通知 6站内信 15 我审批的 16 我发出的 17 抄送我的 18 匿名信
         /// </summary>
         /// <value></value>
         public int TypeValue { get; set; }

+ 3 - 3
gx_api/GxPress/Model/GxPress.Request/Notice/NoticePageSearchRequest.cs

@@ -9,15 +9,15 @@ namespace GxPress.Request.Notice
     /// <summary>
     /// 通知查询
     /// </summary>
-  public  class NoticePageSearchRequest:PageParameter
+    public class NoticePageSearchRequest : PageParameter
     {
         /// <summary>
         /// 用户Id
         /// </summary>
         public int UserId { get; set; }
-       
+
         /// <summary>
-        /// 0 全部 1 我的 2草稿 3已删除
+        /// 0 全部 1 我的 2草稿 3已删除 15 我审批的 16我发出的 17抄送我的  18 匿名信  5 通知 6 站内信
         /// </summary>
         public int SearchType { get; set; }
         /// <summary>

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

@@ -328,6 +328,8 @@ namespace GxPress.Repository.Implement
                 sb += " and a.NoticeAddresseeType=2 AND a.AttributeValue=1 AND a.IsDelete = 0";
             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}";
             else
                 sb += " AND a.IsDelete = 0 AND a.NoticeAddresseeType != 2";
             if (!string.IsNullOrEmpty(request.Keyword))
@@ -470,7 +472,7 @@ namespace GxPress.Repository.Implement
                                         tede_addressee d ON d.Id = a.MiddleSonId
                                     WHERE
                                         a.UserId = {1} and a.FolderType={2}
-                                            {0}", sb, request.UserId,noticeTypeValue);
+                                            {0}", sb, request.UserId, noticeTypeValue);
             var databaseType = StringUtils.ToEnum<DatabaseType>(_databaseTypeStr, DatabaseType.MySql);
             var database = new Database(databaseType, _connectionString);
             var connection = database.GetConnection();
@@ -479,7 +481,7 @@ namespace GxPress.Repository.Implement
                     (noticeListPageResult, notice, user, noticeAddressee) =>
                     {
                         noticeListPageResult.Title = notice != null ? notice.Title : "";
-                        noticeListPageResult.TypeValue=notice != null ? notice.TypeValue :0;
+                        noticeListPageResult.TypeValue = notice != null ? notice.TypeValue : 0;
                         noticeListPageResult.Content = notice != null ? notice.Content : "[]";
                         noticeListPageResult.UserName = user != null ? user.Name : "";
                         noticeListPageResult.SourceId = notice != null ? notice.SourceId : 0;