using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace TEAMModelOS.SDK.Models.Cosmos.Student { public class ArtAttachment : CosmosEntity { public ArtAttachment() { pk = "ArtAttachment"; } public string artId { get; set; } public string studentId { get; set; } /// /// 任务id /// public string taskId { get; set; } /// /// 任务名称 /// public string taskName { get; set; } /// /// 科目id /// public string subjectId { get; set; } /// /// 科目名称 /// public string subjectName { get; set; } /// /// 指标id /// public string quotaId { get; set; } /// /// 指标名称 /// public string quotaName { get; set; } /// /// 指标类型-1未设定 0评分,1评测,2作业 /// public int quotaType { get; set; } public string address { get; set; } public string time { get; set; } public string duration { get; set; } public string achievement { get; set; } public string name { get; set; } public string des { get; set; } //0 艺术作品 1 等级证书 public int artType { get; set; } // 0 校级 1 区级 2 市级 3 省级 4 国家级 5参与演出 6参观、7校外培训 8获奖 9考级 10 比赛 public int level { get; set; } public long uploadTime { get; set; } public long updateTime { get; set; } /// /// 上传的文件 /// public List files { get; set; } public string uploadName { get; set; } } }