using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; using TEAMModelOS.SDK.Context.Attributes.Azure; using TEAMModelOS.SDK.DI; namespace TEAMModelOS.SDK.Models { /// /// 教师评语罐头 /// public class Comment : CosmosEntity { public Comment(){ comment = new List(); } /// /// 评语 /// public List comment { get; set; } } }