using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Models { /// /// 用于表示学员的 课堂实录 放在Teacher表中 /// public class ClassVideo : CosmosEntity { //id 设计:技能点的 abilityId //code 分区键设计 AbilitySub-hbcn-tmdid /// /// 学校编码 /// public string school { get; set; } /// /// 创建者醍摩豆id /// public string creatorId { get; set; } public List files { get; set; } = new List(); } public class AbilityFile { /// /// 作品总评 /// public int score { get; set; } = -1; /// /// 课堂实录id 同时也是评论/话题的统一id(comid作用),用于被关联 /// public string id { get; set; } /// /// 地址 /// public string url { get; set; } /// /// 文件名 /// public string name { get; set; } /// /// 上传时间 /// public long time { get; set; } /// /// 文件大小 /// public long size{ get; set; } } }