|
@@ -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; }
|
|
|
+ }
|
|
|
}
|