123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using EMIS.ViewModel.CacheManage;
- namespace EMIS.ViewModel.SupervisionManage
- {
- public class SupEvaluationView
- {
-
-
-
- public Guid? SchoolYearID { get; set; }
-
-
-
- public string SchoolyearCode { get; set; }
-
-
-
- public Guid? LessonRecordID { get; set; }
-
-
-
- public Guid? ProjectRecordID { get; set; }
-
-
-
- public DateTime? LessonDate { get; set; }
- public string LessonDateStr
- {
- get
- {
- if(LessonDate.HasValue)
- {
- var dateStr=LessonDate.Value.Year+"年"+LessonDate.Value.Month+"月"+LessonDate.Value.Day+"日";
- return dateStr;
- }else{
- return null;
- }
- }
- }
-
-
-
- public string Location { get; set; }
-
-
-
- public Guid? SupervisionCollegeID { get; set; }
-
-
-
- public string SupervisionCollegeName{get;set;}
-
-
-
- public Guid? UserID { get; set; }
-
-
-
- public string UserName { get; set; }
-
-
-
- public Guid? CoursematerialID { get; set; }
-
-
-
- public string CourseName { get; set; }
-
-
-
- public int? Weekday { get; set; }
-
-
-
- public Guid? CoursesTimeID { get; set; }
-
-
-
- public string Content { get; set; }
-
-
-
- public string Advise { get; set; }
-
-
-
- public int? SupervisionTypeID { get; set; }
- public string SupervisionTypeName
- {
- get
- {
- if (SupervisionTypeID==null)
- {
- return "督导听课";
- }
- else{
- return IdNameExt.GetDictionaryItem(DictionaryItem.SUP_SupervisionType.ToString())
- .Where(x => x.Value == SupervisionTypeID)
- .Select(x => x.Name).FirstOrDefault();
- }
- }
- }
-
-
-
- public int StartTimes { get; set; }
-
-
-
- public int EndTimes { get; set; }
- public decimal? TotalScore { get; set; }
- public Guid? CreateUserID { get; set; }
- public string CreateUserName { get; set; }
- }
- }
|