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
{
///
/// 智慧学区成员学校
///
[TableSpace(Name = "Core")]
public class SchoolAreaMember: TableEntity
{
///
/// 智慧学区编码
///
public string AreaCode { set; get; }
///
/// 智慧学区名称
///
public string AreaName { get; set; }
///
/// 智慧学区成员学校编码
///
public string SchoolCode { get; set; }
///
/// 智慧学区成员学校名称
///
public string SchoolName { get; set; }
}
}