using Learun.Util; using System; using System.ComponentModel.DataAnnotations.Schema; namespace Learun.Application.TwoDevelopment.EducationalAdministration { /// /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2018 北京泉江科技有限公司 /// 创 建:超级管理员 /// 日 期:2019-02-27 11:05 /// 描 述:排课 /// public class LessonStatictisEntity { #region 实体成员 //b.classroomname,b.classroombuildingname,usecount /// /// 姓名 /// public string empname { get; set; } /// /// 教师职务 /// public string zhiwu { get; set; } /// /// 教师职称 /// public string zhicheng { get; set; } /// /// 部门 /// public string dept { get; set; } /// /// 周任务课时 /// public string weekcourses { get; set; } /// /// 实际月课时量 /// public string monthactcourses { get; set; } /// /// 折算后月课时量 /// public string zhesuan_monthactcourses { get; set; } /// /// 课时费标准 /// public string feestandard { get; set; } /// /// 实发课时费 /// public string actfeestandard { get; set; } #endregion } }