using System; using System.Collections.Generic; using System.Text; namespace TEAMModelOS.SDK.Models.Cosmos.Student { public class CommonData : CosmosEntity { public CommonData() { pk = "Common"; } /// /// 业务类型 vote投票 survey问卷 exam评测 learn学习活动 homework作业活动 /// public string type { get; set; } public string name { get; set; } public string startTime { get; set; } public string endTime { get; set; } public string scode { get; set; } } }