123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace FMSAdmin.Entities {
- public partial class BemsEnergyGoalDaily {
- //일별에너지 목표사용량
- [Display(Name = "현장 고유번호"), Key]
- public int SiteId { get; set; }
- [Display(Name = "건물번호"), Key]
- public int BuildingId { get; set; }
- [Display(Name = "냉난방 구분"), Key]
- public DateTime CreatedDate { get; set; }
- [Display(Name = "에너지 타입")]
- public int Goal { get; set; }
- [ForeignKey("SiteId,BuildingId")]
- public virtual CmBuilding CmBuilding { get; set; }
- }
- }
|