using System;
using System.Collections.Generic;
using System.Text;
namespace TEAMModelOS.SDK.Models.Cosmos
{
///
/// 教室,只存在于学校。
///
public class Room : CosmosEntity
{
public Room(){
pk = "Room";
}
public string name { get; set; }
///
/// 教室编号
///
public string no { get; set; }
public float? x { get; set; }
public float? y { get; set; }
public string sn { get; set; }
///
/// 教室属性,普通 /专设的教室
///
public string openType { get; set; }
// public string scope { get; set; }
///
/// TBL IRS 类型区分
///
public string style { get; set; }
///
///
///
public string area { get; set; }
}
}