SchoolArea.cs 515 B

1234567891011121314151617181920
  1. using MessagePack;
  2. using Microsoft.WindowsAzure.Storage.Table;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. using TEAMModelOS.SDK.Context.Attributes.Azure;
  7. namespace TEAMModelOS.Model.Core.Models
  8. {
  9. [TableSpace(Name = "Core")]
  10. [MessagePackObject(keyAsPropertyName: true)]
  11. public class SchoolArea :TableEntity
  12. {
  13. /// <summary>
  14. /// 智慧学区名称
  15. /// </summary>
  16. public string Name { get; set; }
  17. public int Code { get; set; }
  18. }
  19. }