You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

27 lines
795 B

  1. using Learun.Util;
  2. using System;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. namespace Learun.Application.TwoDevelopment.EducationalAdministration
  5. {
  6. /// <summary>
  7. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  8. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  9. /// 创 建:超级管理员
  10. /// 日 期:2019-01-29 11:08
  11. /// 描 述:班级信息管理
  12. /// </summary>
  13. public class ClassRoomStatictisEntity
  14. {
  15. #region 实体成员
  16. //b.classroomname,b.classroombuildingname,usecount
  17. public string classroomname { get; set; }
  18. public string classroombuildingname { get; set; }
  19. public string usecount { get; set; }
  20. public string rate { get; set; }
  21. #endregion
  22. }
  23. }