123456789101112131415161718192021222324252627282930313233 |
- 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(){
- pk = "Comment";
- }
- /// <summary>
- /// 评语
- /// </summary>
- public List<Box> boxes { get; set; } = new List<Box>();
-
- }
- public class Box {
- /// <summary>
- /// type="correct" 阅卷批注 "homework" 作业批注 "common": 常用的
- /// </summary>
- public string type { get; set; }
- public List<string> comment { get; set; } = new List<string>();
- }
- }
|