12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.SDK.Models
- {
- public class TchList : CosmosEntity
- {
- public TchList()
- {
- pk = "TchList";
- }
- public List<string> teachers { get; set; }
- public string name { get; set; }
- //标记该名单唯一code
- public string no { get; set; }
- public string scope { get; set; }
- public string school { get; set; }
- public string creatorId { get; set; }
- /// <summary>
- /// teacher 教师分组名单 , research 教研组名单
- /// </summary>
- public string type { get; set; }
- }
- }
|