123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using EMIS.ViewModel.CacheManage;
- namespace EMIS.ViewModel.UniversityManage.ClassroomManage
- {
- public class BuildingsInfoView
- {
-
-
-
- [DisplayName("主键ID")]
- public Guid BuildingsInfoID { get; set; }
-
-
-
- [Required]
- [DisplayName("建筑编号")]
- [RegularExpression(@"^[0-9a-zA-Z\s?]+$", ErrorMessage = "请输入数字或英文字母")]
- public string Code { get; set; }
-
-
-
- [Required]
- [DisplayName("建筑名称")]
- public string Name { get; set; }
-
-
-
- [Required]
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "Campus")]
- public Guid? CampusID { get; set; }
-
-
-
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CampusCode")]
- public string CampusCode { get; set; }
-
-
-
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CampusName")]
- public string CampusName { get; set; }
-
-
-
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "College")]
- public Guid? CollegeID { get; set; }
-
-
-
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CollegeCode")]
- public string CollegeCode { get; set; }
-
-
-
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CollegeName")]
- public string CollegeName { get; set; }
-
-
-
- [Required]
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "Campus")]
- public Guid? CollegeCampusID { get; set; }
-
-
-
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CampusCode")]
- public string CollegeCampusCode { get; set; }
-
-
-
- [Display(ResourceType = typeof(EMIS.Resources.DataAnnotations.Label), Name = "CampusName")]
- public string CollegeCampusName { get; set; }
-
-
-
- [Required]
- [DisplayName("建筑类型")]
- public int? BuildingsTypeID { get; set; }
-
-
-
- [DisplayName("建筑类型")]
- public string BuildingsTypeStr { get; set; }
-
-
-
- [DisplayName("建筑类型")]
- public string BuildingsTypeName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_BuildingsType.ToString()).Where(x => x.Value == BuildingsTypeID).Select(x => x.Name).FirstOrDefault();
- }
- }
-
-
-
- [Required]
- [DisplayName("建筑状况")]
- public int? BuildingsStatusID { get; set; }
-
-
-
- [DisplayName("建筑状况")]
- public string BuildingsStatusStr { get; set; }
-
-
-
- [DisplayName("建筑状况")]
- public string BuildingsStatusName
- {
- get
- {
- return IdNameExt.GetDictionaryItem(DictionaryItem.CF_BuildingsStatus.ToString()).Where(x => x.Value == BuildingsStatusID).Select(x => x.Name).FirstOrDefault();
- }
- }
-
-
-
- [DisplayName("建筑层数")]
- public decimal? BuildingsLevel { get; set; }
-
-
-
- [DisplayName("建筑层数")]
- public string BuildingsLevelStr { get; set; }
-
-
-
- [DisplayName("建筑面积")]
- public decimal? BuildingsArea { get; set; }
-
-
-
- [DisplayName("建筑面积")]
- public string BuildingsAreaStr { get; set; }
-
-
-
- [DisplayName("使用面积")]
- public decimal? UseArea { get; set; }
-
-
-
- [DisplayName("使用面积")]
- public string UseAreaStr { get; set; }
-
-
-
- [DisplayName("地址")]
- public string Position { get; set; }
-
-
-
- [DisplayName("是否可用")]
- public bool IsSpecial { get; set; }
-
-
-
- [DisplayName("是否可用")]
- public string IsSpecialStr { get; set; }
-
-
-
- [DisplayName("是否可用")]
- public string IsSpecialName
- {
- get
- {
- return IsSpecial == true ? "是" : "否";
- }
- }
-
-
-
- [DisplayName("教室间数")]
- public int? ClassroomCount { get; set; }
-
-
-
- [DisplayName("备注")]
- public string Remark { get; set; }
-
-
-
- [DisplayName("未导入原因")]
- public string ErrorMessage { get; set; }
-
-
-
- [DisplayName("状态")]
- public int? RecordStatus { get; set; }
-
-
-
- [DisplayName("创建人")]
- public Guid? CreateUserID { get; set; }
-
-
-
- [DisplayName("创建时间")]
- public DateTime? CreateTime { get; set; }
-
-
-
- [DisplayName("修改人")]
- public Guid? ModifyUserID { get; set; }
-
-
-
- [DisplayName("修改时间")]
- public DateTime? ModifyTime { get; set; }
- }
- }
|