1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using MessagePack;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.Model.Syllabus.Dtos
- {
- [MessagePackObject(keyAsPropertyName: true)]
- public class BlockPointDto
- {
- public string PartitionKey { get; set; }
- public string RowKey { get; set; }
- /// <summary>
- /// 名称
- /// </summary>
- public string Name { get; set; }
- /// <summary>
- /// 描述
- /// </summary>
- // public string Description { get; set; }
- /// <summary>
- /// 上级ID
- /// </summary>
- public string Pid { get; set; } = "root";
- /// <summary>
- /// 学科
- /// </summary>
- public string SubjectCode { get; set; }
- /// <summary>
- /// 建议学段
- /// </summary>
- public string AdvicePeriodCode { get; set; }
- public int Order { get; set; }
- [IgnoreMember]
- public List<PointDto> Points { get; set; }
- [IgnoreMember]
- public List<BlockPointDto> Children { get; set; }
- public BlockPointDto()
- {
- Children = new List<BlockPointDto>();
- }
- }
- }
|