using System;
using System.Collections.Generic;
using System.Text;
namespace TEAMModelOS.SDK.Models.Cosmos.Common
{
///
/*
*
*/
///
public class StuCourse :CosmosEntity
{
///
/// 课程的分区键课程Code
///
public string scode { get; set; }
///
///课程名称
///
public string name { get; set; }
public string scope { get; set; }
///
/// 学校
///
public string school { get; set; }
///
/// 创建者
///
public string creatorId { get; set; }
///
/// 行政班 数组方式 是为了解决 同一个课程,多个编辑或者名单中有重复的学生。
///
public List classId { get; set; } = new List();
///
/// 自定义名单
///
public List stulist { get; set; } = new List();
public long createTime { get; set; } = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds();
}
}