1234567891011121314151617181920212223242526272829 |
- 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
- {
- /// <summary>
- /// 教师评语罐头
- /// </summary>
-
- public class Comment : CosmosEntity
- {
-
- public Comment(){
- comment = new List<string>();
- }
- /// <summary>
- /// 评语
- /// </summary>
- public List<string> comment { get; set; }
-
-
- }
- }
|