Browse Source

优化接收人群

Li 2 years ago
parent
commit
8b9d3b86d5
1 changed files with 9 additions and 3 deletions
  1. 9 3
      TEAMModelOS.SDK/Models/Cosmos/BI/BICommon/Notice.cs

+ 9 - 3
TEAMModelOS.SDK/Models/Cosmos/BI/BICommon/Notice.cs

@@ -71,12 +71,18 @@ namespace TEAMModelOS.SDK.Models.Cosmos.BI
     /// </summary>
     public class Crowd
     {
-        public List<string> tmdIds { get; set; }
-        public List<string> schoolIds { get; set; }
-        public List<string> areaIds { get; set; }
+        public List<CrowdInfo> tmdIds { get; set; }
+        public List<CrowdInfo> schoolIds { get; set; }
+        public List<CrowdInfo> areaIds { get; set; }
         /// <summary>
         /// 接收类型
         /// </summary>
         public List<string> types { get; set; }
     }
+
+    public class CrowdInfo
+    {
+        public string id { get; set; }
+        public string name { get; set; }
+    }
 }