1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Text.Json;
- using System.Threading.Tasks;
- namespace TEAMModelOS.SDK.Models.Cosmos.Common
- {
- public class ArtExam : CosmosEntity
- {
- public ArtExam()
- {
- pk = "ArtExam";
- }
- public string infoId { get; set; }
- public string activityId { get; set; }
- public string schoolId { get; set; }
- public string name { get; set; }
- public string blob { get; set; }
- public int count { get; set; }
- public string periodId { get; set; }
- public string periodName { get; set; }
- public List<string> periodTypes { get; set; } = new List<string>();
- public string subjectId { get; set; }
- public string subjectBindId { get; set; }
- public long createTime { get; set; }
- public List<string> gradeIds { get; set; } = new List<string>();
- }
- }
|