瀏覽代碼

结构调整

zhouj1203@hotmail.com 2 年之前
父節點
當前提交
e92467b056
共有 1 個文件被更改,包括 8 次插入5 次删除
  1. 8 5
      TEAMModelOS.SDK/Models/Cosmos/Common/ArtMusic.cs

+ 8 - 5
TEAMModelOS.SDK/Models/Cosmos/Common/ArtMusic.cs

@@ -15,12 +15,15 @@ namespace TEAMModelOS.SDK.Models.Cosmos.Common
         }
         //模块ID
         public string activityId { get; set; }
-        public List<StuInfo> stus { get; set; }
         //第三方平台返回的结构
-        public JsonElement JsonElement { get; set; }
+        public string questionId { get; set; }
+        public string questionName { get; set; }
+        public List<MustSong> mustSong { get; set; } = new List<MustSong>();
+        public List<MustSong> optionSong { get; set; } = new List<MustSong>();
     }
-    public class StuInfo {
-        public string stuId { get; set; }
-        public List<double> scores { get; set; }
+    public class MustSong
+    { 
+        public string songId { get; set; }
+        public string songName { get; set; }
     }
 }