Room.cs 559 B

12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.Models.Cosmos.School
  5. {
  6. /// <summary>
  7. /// 教室
  8. /// </summary>
  9. public class Room : CosmosEntity
  10. {
  11. public string name { get; set; }
  12. public float? x { get; set; }
  13. public float? y { get; set; }
  14. public string sn { get; set; }
  15. /// <summary>
  16. /// 教室属性,普通 /专设的教室
  17. /// </summary>
  18. public string openType { get; set; }
  19. public string scope { get; set; }
  20. }
  21. }