12345678910111213141516171819202122232425 |
-
- using Microsoft.WindowsAzure.Storage.Table;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using TEAMModelOS.SDK.Context.Attributes.Azure;
- namespace TEAMModelOS.Model.Core.Models
- {
- /// <summary>
- /// 智慧学区成员学校
- /// </summary>
- public class SchoolAreaMember
- {
-
- /// <summary>
- /// 智慧学区成员学校编码
- /// </summary>
- public string SchoolCode { get; set; }
- /// <summary>
- /// 智慧学区成员学校名称
- /// </summary>
- public string SchoolName { get; set; }
- }
- }
|