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